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

:root {
  /* Primary Colors */
  --color-primary: #0066cc;
  --color-primary-dark: #004499;
  --color-primary-light: #e6f0ff;
  --color-accent: #ff6b35;
  --color-accent-light: #ffe6d5;
  
  /* Backgrounds */
  --color-bg-dark: #0a0e27;
  --color-bg-darker: #050812;
  --color-bg-light: #ffffff;
  --color-bg-light-gray: #f5f7fa;
  --color-bg-medium: #e8ecf1;
  
  /* Text Colors */
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e0e8f0;
  --color-text-dark: #1a1f3a;
  --color-text-dark-secondary: #4a5578;
  --color-text-muted: #7a8aaa;
  
  /* Status Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  /* Borders & Shadows */
  --color-border: #d1dce6;
  --color-border-dark: #1a2847;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 3.75rem;
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --spacing-4xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Icon Sizes */
  --icon-size-sm: 1.25rem;
  --icon-size-md: 1.5rem;
  --icon-size-lg: 2rem;
  --icon-size-xl: 3rem;
  --icon-size-2xl: 4rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}

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

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

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

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

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

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

p {
  line-height: var(--line-height-relaxed);
}

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

ul, ol {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--color-primary);
  padding: 0.5rem 1rem;
}

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

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

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: var(--font-size-lg);
}

/* Icon Styling */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--icon-size-md);
}

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

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

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

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

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

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

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

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

.card-header {
  margin-bottom: var(--spacing-md);
}

.card-body {
  flex: 1;
  margin-bottom: var(--spacing-md);
}

.card-footer {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

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

.badge-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--color-warning);
}

.badge-error {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
}

.badge-dark {
  background-color: rgba(26, 31, 58, 0.1);
  color: var(--color-text-dark);
}

/* 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: repeat(2, 1fr);
}

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

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

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

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

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

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

/* Spacing Utilities */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

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

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

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

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

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

.italic { font-style: italic; }
.underline { text-decoration: underline; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Opacity & Visibility */
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.hidden { display: none; }
.visible { display: block; }

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

/* Form Elements */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  background-color: var(--color-bg-light);
}

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

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

/* Responsive Typography */
@media (max-width: 767px) {
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  h3 {
    font-size: var(--font-size-lg);
  }
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--color-text-muted);
  border-radius: var(--radius-full);
}

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

/* Selection Styling */
::selection {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

  /* ============================================
     POWER NAV HEADER COMPONENT
     ============================================ */

  .power-nav {
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid var(--color-border-dark);
    position: relative;
    z-index: 100;
    box-shadow: var(--shadow-sm);
  }

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

  /* ============================================
     LOGO / BRAND
     ============================================ */

  .power-nav-logo {
    flex-shrink: 0;
  }

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

  .power-nav-brand:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
  }

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

  /* ============================================
     DESKTOP NAVIGATION
     ============================================ */

  .power-nav-desktop-nav {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    margin: 0 var(--spacing-lg);
  }

  @media (min-width: 1024px) {
    .power-nav-desktop-nav {
      display: flex;
    }
  }

  .power-nav-nav-link {
    color: var(--color-text-light-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    position: relative;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
  }

  .power-nav-nav-link:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
  }

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

  /* ============================================
     CTA BUTTON (DESKTOP)
     ============================================ */

  .power-nav-cta-button {
    display: none;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }

  @media (min-width: 1024px) {
    .power-nav-cta-button {
      display: inline-block;
    }
  }

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

  .power-nav-cta-button:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
  }

  .power-nav-cta-button:active {
    transform: translateY(0);
  }

  /* ============================================
     MOBILE TOGGLE BUTTON
     ============================================ */

  .power-nav-mobile-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: var(--icon-size-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
    padding: 0;
  }

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

  .power-nav-mobile-toggle:hover {
    color: var(--color-primary);
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: var(--radius-md);
  }

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

  /* ============================================
     MOBILE MENU
     ============================================ */

  .power-nav-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-darker);
    display: flex;
    flex-direction: column;
    padding: var(--spacing-md);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all var(--transition-base);
    overflow-y: auto;
  }

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

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

  .power-nav-mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  /* ============================================
     MOBILE MENU HEADER
     ============================================ */

  .power-nav-mobile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border-dark);
    margin-bottom: var(--spacing-md);
  }

  .power-nav-mobile-header span {
    color: var(--color-text-light);
    font-weight: 600;
    font-size: var(--font-size-lg);
    font-family: var(--font-display);
  }

  .power-nav-mobile-close {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: var(--icon-size-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .power-nav-mobile-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
  }

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

  /* ============================================
     MOBILE NAVIGATION LINKS
     ============================================ */

  .power-nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex: 1;
  }

  .power-nav-mobile-link {
    color: var(--color-text-light-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
  }

  .power-nav-mobile-link:hover {
    color: var(--color-primary);
    background-color: rgba(0, 102, 204, 0.1);
    border-left-color: var(--color-primary);
    padding-left: calc(var(--spacing-md) - 3px);
  }

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

  /* ============================================
     MOBILE CTA BUTTON
     ============================================ */

  .power-nav-mobile-cta {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-primary);
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-base);
    margin-top: auto;
  }

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

  .power-nav-mobile-cta:focus {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
  }

  /* ============================================
     RESPONSIVE ADJUSTMENTS
     ============================================ */

  @media (min-width: 768px) {
    .power-nav-container {
      padding: 0 var(--spacing-md);
      height: 75px;
    }

    .power-nav-brand {
      font-size: 1.375rem;
    }

    .power-nav-brand i {
      font-size: var(--icon-size-xl);
    }

    .power-nav-mobile-menu {
      width: 80%;
      max-width: 400px;
    }

    .power-nav-nav-link {
      font-size: var(--font-size-base);
    }

    .power-nav-cta-button {
      padding: 0.875rem 2rem;
      font-size: var(--font-size-base);
    }
  }

  @media (min-width: 1024px) {
    .power-nav-container {
      padding: 0 var(--spacing-lg);
      height: 80px;
    }

    .power-nav-brand {
      font-size: 1.5rem;
    }

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

    .power-nav-nav-link {
      font-size: var(--font-size-base);
      padding-bottom: 6px;
    }

    .power-nav-cta-button {
      padding: 1rem 2.5rem;
      font-size: var(--font-size-base);
    }
  }

  /* ============================================
     ACCESSIBILITY
     ============================================ */

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

    .power-nav-mobile-toggle:hover,
    .power-nav-mobile-close:hover {
      transform: none;
    }
  }

  /* Ensure text is visible during font load */
  @font-face {
    font-display: swap;
  }

    .energy-hub {
    width: 100%;
  }

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

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

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

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

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

  .energy-hub .hero-text h1 {
    color: var(--color-text-light);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

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

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

  .energy-hub .hero-text p {
    color: var(--color-text-light-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

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

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

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

  .energy-hub .hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }

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

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

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

  .energy-hub .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .energy-hub .section-header h2 {
    color: var(--color-text-light);
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

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

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

  .energy-hub .section-header p {
    color: var(--color-text-dark-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
  }

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

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

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

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

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

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

  .energy-hub .post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .energy-hub .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
  }

  .energy-hub .post-card:hover .post-image img {
    transform: scale(1.05);
  }

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

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

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

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

  .energy-hub .post-body p {
    color: var(--color-text-dark-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
  }

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

  .energy-hub .post-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-base);
    align-self: flex-start;
  }

  .energy-hub .post-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
  }

  .energy-hub .posts-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  @media (min-width: 768px) {
    .energy-hub .posts-footer {
      margin-top: 3rem;
    }
  }

  /* Overview Section */
  .energy-hub .overview-section {
    background-color: var(--color-bg-light-gray);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

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

  .energy-hub .overview-text h2 {
    color: var(--color-text-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

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

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

  .energy-hub .overview-text > p {
    color: var(--color-text-dark-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .energy-hub .overview-text > p {
      font-size: 1.125rem;
    }
  }

  .energy-hub .overview-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .energy-hub .overview-list li {
    display: flex;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .energy-hub .overview-list li {
      gap: 1.5rem;
    }
  }

  .energy-hub .list-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    margin-top: 0.25rem;
  }

  .energy-hub .overview-list h4 {
    color: var(--color-text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .energy-hub .overview-list h4 {
      font-size: 1.125rem;
    }
  }

  .energy-hub .overview-list p {
    color: var(--color-text-dark-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .energy-hub .overview-list p {
      font-size: 1rem;
    }
  }

  .energy-hub .overview-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
  }

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

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

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

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

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

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

  .energy-hub .stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
  }

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

  .energy-hub .stat-card:hover {
    background-color: rgba(0, 102, 204, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-4px);
  }

  .energy-hub .stat-number {
    font-family: var(--font-display);
    color: var(--color-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

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

  @media (min-width: 1024px) {
    .energy-hub .stat-number {
      font-size: 3.5rem;
    }
  }

  .energy-hub .stat-label {
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

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

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

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

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

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

  .energy-hub .trends-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .energy-hub .trend-item {
    background-color: var(--color-bg-light-gray);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

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

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

  .energy-hub .trend-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .energy-hub .trend-item h3 {
    color: var(--color-text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }

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

  .energy-hub .trend-item p {
    color: var(--color-text-dark-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
  }

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

  /* Challenges Section */
  .energy-hub .challenges-section {
    background-color: var(--color-bg-medium);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .energy-hub .challenges-content h2 {
    color: var(--color-text-dark);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
  }

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

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

  .energy-hub .challenges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .energy-hub .challenge-block {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
  }

  @media (min-width: 768px) {
    .energy-hub .challenge-block {
      padding: 2rem;
    }
  }

  .energy-hub .challenge-block h3 {
    color: var(--color-text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-primary);
  }

  @media (min-width: 768px) {
    .energy-hub .challenge-block h3 {
      font-size: 1.75rem;
    }
  }

  .energy-hub .challenge-block.opportunities h3 {
    border-bottom-color: var(--color-success);
  }

  .energy-hub .challenge-block ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .energy-hub .challenge-block li {
    color: var(--color-text-dark-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
  }

  @media (min-width: 768px) {
    .energy-hub .challenge-block li {
      font-size: 1rem;
    }
  }

  .energy-hub .challenge-block li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
  }

  .energy-hub .challenge-block.opportunities li::before {
    color: var(--color-success);
  }

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

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

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

  .energy-hub .insights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .energy-hub .insight-card {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

  @media (min-width: 768px) {
    .energy-hub .insight-card {
      padding: 2rem;
    }
  }

  .energy-hub .insight-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
    transform: translateY(-4px);
  }

  .energy-hub .insight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .energy-hub .insight-icon {
    font-size: 2rem;
    flex-shrink: 0;
  }

  .energy-hub .insight-header h3 {
    color: var(--color-text-dark);
    font-size: 1.125rem;
  }

  @media (min-width: 768px) {
    .energy-hub .insight-header h3 {
      font-size: 1.25rem;
    }
  }

  .energy-hub .insight-card p {
    color: var(--color-text-dark-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
  }

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

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

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

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

  .energy-hub .contact-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .energy-hub .contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

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

  .energy-hub .contact-header h2 {
    color: var(--color-text-light);
    font-size: 2rem;
    margin-bottom: 1rem;
  }

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

  .energy-hub .contact-header p {
    color: var(--color-text-light-secondary);
    font-size: 1rem;
    line-height: 1.7;
  }

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

  .energy-hub .contact-form {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
  }

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

  .energy-hub .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
  }

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

  .energy-hub .form-group label {
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

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

  .energy-hub .form-group input,
  .energy-hub .form-group textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    color: var(--color-text-light);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all var(--transition-base);
  }

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

  .energy-hub .form-group input::placeholder,
  .energy-hub .form-group textarea::placeholder {
    color: var(--color-text-muted);
  }

  .energy-hub .form-group input:focus,
  .energy-hub .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(0, 102, 204, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  }

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

  .energy-hub .form-footer {
    margin-top: 1.5rem;
  }

  @media (min-width: 768px) {
    .energy-hub .form-footer {
      margin-top: 2rem;
    }
  }

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

  @media (min-width: 768px) {
    .energy-hub .form-submit-btn {
      width: auto;
    }
  }

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

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

  .energy-hub .form-privacy {
    color: var(--color-text-light-secondary);
    font-size: 0.8rem;
    margin-top: 1rem;
    text-align: center;
  }

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

  .energy-hub .form-privacy a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
  }

  .energy-hub .form-privacy a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
  }

  /* Cookie Banner */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-darker);
    border-top: 2px solid var(--color-primary);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: slideUp 0.3s ease-in-out;
  }

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

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

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

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

  .cookie-banner p {
    color: var(--color-text-light-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
  }

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

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

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

  .cookie-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
  }

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

  .cookie-accept {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
  }

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

  .cookie-decline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid var(--color-border-dark);
  }

  .cookie-decline:hover {
    border-color: var(--color-text-light);
    background-color: rgba(255, 255, 255, 0.05);
  }

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

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

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

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

  /* Container - inherits from global styles */
  .footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* Main footer content wrapper */
  .footer-content {
    display: block;
  }

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

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

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

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

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

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

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

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    line-height: var(--line-height-relaxed);
    color: var(--color-text-light-secondary);
  }

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

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

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

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

  @media (min-width: 1024px) {
    .footer-nav-section {
      display: flex;
      gap: 4rem;
      margin-bottom: 4rem;
      padding-bottom: 3rem;
      align-items: flex-start;
    }
  }

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

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

  @media (min-width: 1024px) {
    .footer-nav-title {
      min-width: 140px;
      margin-bottom: 0;
      flex-shrink: 0;
    }
  }

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

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

  @media (min-width: 1024px) {
    .footer-nav {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: none;
    }
  }

  .footer-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
  }

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

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

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

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

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

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

  @media (min-width: 1024px) {
    .footer-legal-section {
      display: flex;
      gap: 4rem;
      align-items: flex-start;
      margin-bottom: 4rem;
      padding-bottom: 3rem;
    }
  }

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

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

  @media (min-width: 1024px) {
    .footer-legal-title {
      min-width: 180px;
      margin-bottom: 0;
      flex-shrink: 0;
    }
  }

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

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

  @media (min-width: 1024px) {
    .footer-legal {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: none;
    }
  }

  .footer-legal-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: inline-block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
  }

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

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

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

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

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

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

  @media (min-width: 1024px) {
    .footer-copyright {
      text-align: center;
      padding-top: 3rem;
    }
  }

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
    font-weight: 500;
  }

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

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

  /* ========================================
     ACCESSIBILITY & FOCUS STATES
     ======================================== */

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

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

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

/* Category Page Styles */
/* Category Page - Power Industry Kazakhstan - Complete Styles */

/* ===== HERO SECTION ===== */
.category-page-power-industry-kazakhstan .category-hero-power-industry-kazakhstan {
  background-color: #0a0e27;
  padding: 3rem 0;
  overflow: hidden;
  position: relative;
}

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

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

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

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

.category-page-power-industry-kazakhstan .hero-text-power-industry-kazakhstan {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-page-power-industry-kazakhstan .hero-title-power-industry-kazakhstan {
  font-size: 2.25rem;
  line-height: 1.2;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .hero-title-power-industry-kazakhstan {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .hero-title-power-industry-kazakhstan {
    font-size: 3.5rem;
  }
}

.category-page-power-industry-kazakhstan .hero-description-power-industry-kazakhstan {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #d1dce6;
  font-weight: 400;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .hero-description-power-industry-kazakhstan {
    font-size: 1rem;
  }
}

.category-page-power-industry-kazakhstan .hero-visual-power-industry-kazakhstan {
  flex: 1;
  width: 100%;
  max-height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .hero-visual-power-industry-kazakhstan {
    max-height: 350px;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .hero-visual-power-industry-kazakhstan {
    max-height: 400px;
  }
}

.category-page-power-industry-kazakhstan .hero-image-power-industry-kazakhstan {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== POSTS GRID SECTION ===== */
.category-page-power-industry-kazakhstan .posts-grid-section-power-industry-kazakhstan {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .posts-grid-section-power-industry-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .posts-grid-section-power-industry-kazakhstan {
    padding: 6rem 0;
  }
}

.category-page-power-industry-kazakhstan .posts-grid-power-industry-kazakhstan {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

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

/* ===== CARD STYLES ===== */
.category-page-power-industry-kazakhstan .card-power-industry-kazakhstan {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  padding: 0;
  height: 100%;
}

.category-page-power-industry-kazakhstan .card-power-industry-kazakhstan:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.category-page-power-industry-kazakhstan .card-image-power-industry-kazakhstan {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.category-page-power-industry-kazakhstan .card-title-power-industry-kazakhstan {
  font-size: 1.25rem;
  line-height: 1.3;
  color: #1a1f3a;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .card-title-power-industry-kazakhstan {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .card-title-power-industry-kazakhstan {
    font-size: 1.5rem;
    padding: 1.5rem;
    padding-bottom: 0;
  }
}

.category-page-power-industry-kazakhstan .card-description-power-industry-kazakhstan {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a5578;
  padding: 0.75rem 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .card-description-power-industry-kazakhstan {
    font-size: 0.9rem;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .card-description-power-industry-kazakhstan {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
  }
}

.category-page-power-industry-kazakhstan .card-link-power-industry-kazakhstan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  color: #0066cc;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition-base);
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .card-link-power-industry-kazakhstan {
    padding: 1rem 1.5rem;
  }
}

.category-page-power-industry-kazakhstan .card-link-power-industry-kazakhstan:hover {
  color: #004499;
  transform: translateX(4px);
}

/* ===== ADDITIONAL SECTION 1 ===== */
.category-page-power-industry-kazakhstan .additional-section-1-power-industry-kazakhstan {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .additional-section-1-power-industry-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .additional-section-1-power-industry-kazakhstan {
    padding: 6rem 0;
  }
}

.category-page-power-industry-kazakhstan .section-title-1-power-industry-kazakhstan {
  font-size: 1.875rem;
  line-height: 1.3;
  color: #1a1f3a;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .section-title-1-power-industry-kazakhstan {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .section-title-1-power-industry-kazakhstan {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

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

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

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

.category-page-power-industry-kazakhstan .stat-item-power-industry-kazakhstan {
  background-color: #f5f7fa;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid #0066cc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .stat-item-power-industry-kazakhstan {
    padding: 2rem;
  }
}

.category-page-power-industry-kazakhstan .stat-item-power-industry-kazakhstan:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-page-power-industry-kazakhstan .stat-icon-power-industry-kazakhstan {
  font-size: 2rem;
  color: #0066cc;
}

.category-page-power-industry-kazakhstan .stat-label-power-industry-kazakhstan {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1f3a;
  font-family: var(--font-display);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .stat-label-power-industry-kazakhstan {
    font-size: 1.25rem;
  }
}

.category-page-power-industry-kazakhstan .stat-text-power-industry-kazakhstan {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a5578;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .stat-text-power-industry-kazakhstan {
    font-size: 0.9rem;
  }
}

/* ===== ADDITIONAL SECTION 2 ===== */
.category-page-power-industry-kazakhstan .additional-section-2-power-industry-kazakhstan {
  background-color: #e8ecf1;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .additional-section-2-power-industry-kazakhstan {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .additional-section-2-power-industry-kazakhstan {
    padding: 6rem 0;
  }
}

.category-page-power-industry-kazakhstan .section-title-2-power-industry-kazakhstan {
  font-size: 1.875rem;
  line-height: 1.3;
  color: #1a1f3a;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .section-title-2-power-industry-kazakhstan {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .section-title-2-power-industry-kazakhstan {
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

.category-page-power-industry-kazakhstan .trends-list-power-industry-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .trends-list-power-industry-kazakhstan {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .category-page-power-industry-kazakhstan .trends-list-power-industry-kazakhstan {
    gap: 2.5rem;
  }
}

.category-page-power-industry-kazakhstan .trend-item-power-industry-kazakhstan {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .trend-item-power-industry-kazakhstan {
    padding: 2rem;
    gap: 2rem;
  }
}

.category-page-power-industry-kazakhstan .trend-item-power-industry-kazakhstan:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.category-page-power-industry-kazakhstan .trend-number-power-industry-kazakhstan {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #0066cc;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .trend-number-power-industry-kazakhstan {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.category-page-power-industry-kazakhstan .trend-details-power-industry-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.category-page-power-industry-kazakhstan .trend-title-power-industry-kazakhstan {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1f3a;
  font-family: var(--font-display);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .trend-title-power-industry-kazakhstan {
    font-size: 1.25rem;
  }
}

.category-page-power-industry-kazakhstan .trend-description-power-industry-kazakhstan {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #4a5578;
}

@media (min-width: 768px) {
  .category-page-power-industry-kazakhstan .trend-description-power-industry-kazakhstan {
    font-size: 0.9rem;
  }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
  .category-page-power-industry-kazakhstan .posts-grid-power-industry-kazakhstan {
    grid-template-columns: 1fr;
  }

  .category-page-power-industry-kazakhstan .stats-grid-power-industry-kazakhstan {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITIES ===== */
.category-page-power-industry-kazakhstan .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

/* Post Page 1 Styles */
/* Post: Renewable Energy Development - Complete Isolation */

.post-renewable-energy-development {
  width: 100%;
}

/* ==================== BREADCRUMBS ==================== */
.post-renewable-energy-development .renewable-energy-development-breadcrumbs {
  background-color: var(--color-bg-light-gray);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.post-renewable-energy-development .renewable-energy-development-breadcrumbs .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-renewable-energy-development .renewable-energy-development-breadcrumbs a {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color var(--transition-base);
}

.post-renewable-energy-development .renewable-energy-development-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-renewable-energy-development .renewable-energy-development-breadcrumbs span:last-child {
  color: var(--color-text-dark);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.post-renewable-energy-development .renewable-energy-development-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

/* ==================== HERO SECTION ==================== */
.post-renewable-energy-development .renewable-energy-development-hero {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-hero {
    padding: 6rem 0;
  }
}

.post-renewable-energy-development .renewable-energy-development-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-renewable-energy-development .renewable-energy-development-hero-title {
  color: var(--color-text-light);
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-hero-title {
    font-size: var(--font-size-3xl);
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-hero-title {
    font-size: var(--font-size-4xl);
  }
}

.post-renewable-energy-development .renewable-energy-development-hero-lead {
  color: var(--color-text-light-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-hero-lead {
    font-size: var(--font-size-lg);
  }
}

.post-renewable-energy-development .renewable-energy-development-hero-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.post-renewable-energy-development .renewable-energy-development-hero-meta i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.post-renewable-energy-development .renewable-energy-development-meta-divider {
  color: var(--color-text-muted);
  opacity: 0.5;
}

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

/* Section 1 - Light Background */
.post-renewable-energy-development .renewable-energy-development-section-1 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-section-1 {
    padding: 6rem 0;
  }
}

.post-renewable-energy-development .renewable-energy-development-content-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

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

.post-renewable-energy-development .renewable-energy-development-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-renewable-energy-development .renewable-energy-development-section-title {
  color: var(--color-text-dark);
  font-size: var(--font-size-xl);
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-section-title {
    font-size: var(--font-size-2xl);
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-section-title {
    font-size: var(--font-size-3xl);
  }
}

.post-renewable-energy-development .renewable-energy-development-paragraph {
  color: var(--color-text-dark-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-paragraph {
    font-size: var(--font-size-lg);
  }
}

.post-renewable-energy-development .renewable-energy-development-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Section 2 - Light Gray Background */
.post-renewable-energy-development .renewable-energy-development-section-2 {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-section-2 {
    padding: 6rem 0;
  }
}

.post-renewable-energy-development .renewable-energy-development-content-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-renewable-energy-development .renewable-energy-development-solar-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-renewable-energy-development .renewable-energy-development-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-renewable-energy-development .renewable-energy-development-subheading {
  color: var(--color-text-dark);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-tight);
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-subheading {
    font-size: var(--font-size-xl);
  }
}

.post-renewable-energy-development .renewable-energy-development-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-renewable-energy-development .renewable-energy-development-list-item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  color: var(--color-text-dark-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-list-item {
    font-size: var(--font-size-lg);
  }
}

.post-renewable-energy-development .renewable-energy-development-list-item i {
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-size: var(--icon-size-md);
}

.post-renewable-energy-development .renewable-energy-development-list-item strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

/* Section 3 - White Background */
.post-renewable-energy-development .renewable-energy-development-section-3 {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-section-3 {
    padding: 6rem 0;
  }
}

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

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

.post-renewable-energy-development .renewable-energy-development-wind-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  order: 1;
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-wind-intro {
    order: 0;
  }
}

.post-renewable-energy-development .renewable-energy-development-image-2 {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  order: 0;
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-image-2 {
    order: 1;
  }
}

.post-renewable-energy-development .renewable-energy-development-wind-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-renewable-energy-development .renewable-energy-development-challenges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Section 4 - Primary Color Background */
.post-renewable-energy-development .renewable-energy-development-section-4 {
  background-color: var(--color-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-section-4 {
    padding: 6rem 0;
  }
}

.post-renewable-energy-development .renewable-energy-development-content-4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-renewable-energy-development .renewable-energy-development-section-4 .renewable-energy-development-section-title {
  color: var(--color-text-light);
}

.post-renewable-energy-development .renewable-energy-development-section-4 .renewable-energy-development-paragraph {
  color: var(--color-text-light-secondary);
}

.post-renewable-energy-development .renewable-energy-development-section-4 .renewable-energy-development-subheading {
  color: var(--color-text-light);
}

.post-renewable-energy-development .renewable-energy-development-policy-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-policy-box {
    padding: 2.5rem;
  }
}

.post-renewable-energy-development .renewable-energy-development-programs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-renewable-energy-development .renewable-energy-development-program-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-program-item {
    padding: 2rem;
  }
}

.post-renewable-energy-development .renewable-energy-development-program-title {
  color: var(--color-text-light);
  font-size: var(--font-size-lg);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-program-title {
    font-size: var(--font-size-xl);
  }
}

.post-renewable-energy-development .renewable-energy-development-program-title i {
  color: var(--color-accent);
  font-size: var(--icon-size-lg);
}

.post-renewable-energy-development .renewable-energy-development-section-4 .renewable-energy-development-program-item .renewable-energy-development-paragraph {
  margin: 0;
}

/* Section 5 - Light Gray Background */
.post-renewable-energy-development .renewable-energy-development-section-5 {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-section-5 {
    padding: 6rem 0;
  }
}

.post-renewable-energy-development .renewable-energy-development-content-5 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-renewable-energy-development .renewable-energy-development-outlook {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-renewable-energy-development .renewable-energy-development-outlook-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-renewable-energy-development .renewable-energy-development-outlook-item {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-primary);
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-outlook-item {
    padding: 2rem;
  }
}

.post-renewable-energy-development .renewable-energy-development-outlook-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.post-renewable-energy-development .renewable-energy-development-outlook-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-size-lg);
}

.post-renewable-energy-development .renewable-energy-development-outlook-title {
  color: var(--color-text-dark);
  font-size: var(--font-size-base);
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-outlook-title {
    font-size: var(--font-size-lg);
  }
}

.post-renewable-energy-development .renewable-energy-development-outlook-text {
  color: var(--color-text-dark-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-outlook-text {
    font-size: var(--font-size-base);
  }
}

/* ==================== RELATED POSTS SECTION ==================== */
.post-renewable-energy-development .renewable-energy-development-related {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-renewable-energy-development .renewable-energy-development-related {
    padding: 6rem 0;
  }
}

.post-renewable-energy-development .renewable-energy-development-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-renewable-energy-development .renewable-energy-development-related-title {
  color: var(--color-text-dark);
  font-size: var(--font-size-2xl);
  line-height: var(--line-height-tight);
  text-align: center;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-related-title {
    font-size: var(--font-size-3xl);
  }
}

.post-renewable-energy-development .renewable-energy-development-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

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

.post-renewable-energy-development .renewable-energy-development-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.post-renewable-energy-development .renewable-energy-development-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.post-renewable-energy-development .renewable-energy-development-related-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-related-body {
    padding: 2rem;
  }
}

.post-renewable-energy-development .renewable-energy-development-related-post-title {
  color: var(--color-text-dark);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-tight);
  font-weight: 600;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-related-post-title {
    font-size: var(--font-size-xl);
  }
}

.post-renewable-energy-development .renewable-energy-development-related-description {
  color: var(--color-text-dark-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-related-description {
    font-size: var(--font-size-base);
  }
}

.post-renewable-energy-development .renewable-energy-development-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--font-size-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-renewable-energy-development .renewable-energy-development-related-link {
    font-size: var(--font-size-base);
  }
}

.post-renewable-energy-development .renewable-energy-development-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-renewable-energy-development .renewable-energy-development-related-link i {
  font-size: var(--icon-size-sm);
  transition: transform var(--transition-base);
}

.post-renewable-energy-development .renewable-energy-development-related-link:hover i {
  transform: translateX(4px);
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 767px) {
  .post-renewable-energy-development .renewable-energy-development-outlook-grid {
    grid-template-columns: 1fr;
  }

  .post-renewable-energy-development .renewable-energy-development-image {
    max-height: 250px;
  }

  .post-renewable-energy-development .renewable-energy-development-image-2 {
    max-height: 250px;
  }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
  .post-renewable-energy-development .renewable-energy-development-related-card,
  .post-renewable-energy-development .renewable-energy-development-outlook-item,
  .post-renewable-energy-development .renewable-energy-development-breadcrumbs a,
  .post-renewable-energy-development .renewable-energy-development-related-link {
    transition: none;
  }

  .post-renewable-energy-development .renewable-energy-development-related-card:hover,
  .post-renewable-energy-development .renewable-energy-development-outlook-item:hover {
    transform: none;
  }
}

/* Focus states for keyboard navigation */
.post-renewable-energy-development .renewable-energy-development-breadcrumbs a:focus,
.post-renewable-energy-development .renewable-energy-development-related-link:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Post Page 2 Styles */
/* ============================================================================
   POST: Coal Energy Modernization - Complete CSS Isolation
   ============================================================================ */

.post-coal-energy-modernization {
  width: 100%;
}

/* Breadcrumbs Navigation */
.post-coal-energy-modernization .coal-energy-modernization-breadcrumbs {
  background-color: #f5f7fa;
  padding: 1rem 0;
  overflow: hidden;
}

.post-coal-energy-modernization .coal-energy-modernization-breadcrumbs .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-coal-energy-modernization .coal-energy-modernization-breadcrumb-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.post-coal-energy-modernization .coal-energy-modernization-breadcrumb-link:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-coal-energy-modernization .coal-energy-modernization-breadcrumb-separator {
  color: #7a8aaa;
  font-size: 0.75rem;
}

.post-coal-energy-modernization .coal-energy-modernization-breadcrumb-current {
  color: var(--color-text-dark);
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .post-coal-energy-modernization .coal-energy-modernization-breadcrumbs .container {
    font-size: 0.75rem;
  }
}

/* Hero Section */
.post-coal-energy-modernization .coal-energy-modernization-hero {
  background-color: #ffffff;
  padding: 4rem 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-hero {
    padding: 6rem 0 4rem;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-hero {
    padding: 8rem 0 5rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-hero-title {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-hero-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-hero-lead {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-hero-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-coal-energy-modernization .coal-energy-modernization-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.post-coal-energy-modernization .coal-energy-modernization-meta-item i {
  color: var(--color-primary);
}

/* Content Section 1 */
.post-coal-energy-modernization .coal-energy-modernization-content-section-1 {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-1 {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-content-1 {
  max-width: 900px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-text-block {
  width: 100%;
}

.post-coal-energy-modernization .coal-energy-modernization-section-title {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-paragraph {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-paragraph {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-highlight-box {
  background-color: #e6f0ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-highlight-box {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.post-coal-energy-modernization .coal-energy-modernization-highlight-title {
  color: var(--color-primary-dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.post-coal-energy-modernization .coal-energy-modernization-highlight-text {
  color: var(--color-text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Content Section 2 - Grid of Features */
.post-coal-energy-modernization .coal-energy-modernization-content-section-2 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-2 {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-content-2 {
  max-width: 1200px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

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

.post-coal-energy-modernization .coal-energy-modernization-feature-card {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-feature-card {
    padding: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.post-coal-energy-modernization .coal-energy-modernization-feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.post-coal-energy-modernization .coal-energy-modernization-feature-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-feature-title {
    font-size: 1.375rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-feature-text {
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.post-coal-energy-modernization .coal-energy-modernization-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-coal-energy-modernization .coal-energy-modernization-feature-list .coal-energy-modernization-list-item {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.post-coal-energy-modernization .coal-energy-modernization-feature-list .coal-energy-modernization-list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: bold;
}

/* Content Section 3 - Text with Image */
.post-coal-energy-modernization .coal-energy-modernization-content-section-3 {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-3 {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-content-3 {
  max-width: 1200px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-text-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-text-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-text-portion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-coal-energy-modernization .coal-energy-modernization-subsection-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.post-coal-energy-modernization .coal-energy-modernization-numbered-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: item;
}

.post-coal-energy-modernization .coal-energy-modernization-numbered-list .coal-energy-modernization-list-item {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
  counter-increment: item;
}

.post-coal-energy-modernization .coal-energy-modernization-numbered-list .coal-energy-modernization-list-item::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  color: #ffffff;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.post-coal-energy-modernization .coal-energy-modernization-image-portion {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
}

.post-coal-energy-modernization .coal-energy-modernization-section-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Content Section 4 - Statistics */
.post-coal-energy-modernization .coal-energy-modernization-content-section-4 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-4 {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-content-4 {
  max-width: 900px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

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

.post-coal-energy-modernization .coal-energy-modernization-stat-card {
  background: linear-gradient(135deg, #e6f0ff 0%, #f0f5ff 100%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition-base);
}

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

.post-coal-energy-modernization .coal-energy-modernization-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-coal-energy-modernization .coal-energy-modernization-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.post-coal-energy-modernization .coal-energy-modernization-stat-label {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

.post-coal-energy-modernization .coal-energy-modernization-stat-description {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Content Section 5 - Challenges */
.post-coal-energy-modernization .coal-energy-modernization-content-section-5 {
  background-color: #f8f9fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-5 {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-content-5 {
  max-width: 900px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-challenges-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-challenges-container {
    gap: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-challenge-item {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-challenge-item {
    padding: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-challenge-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-coal-energy-modernization .coal-energy-modernization-challenge-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.post-coal-energy-modernization .coal-energy-modernization-challenge-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.post-coal-energy-modernization .coal-energy-modernization-challenge-solution {
  color: var(--color-text-dark);
  font-size: 0.9rem;
  line-height: 1.6;
  background-color: #f5f7fa;
  padding: 0.75rem;
  border-radius: var(--radius-md);
}

/* Content Section 6 - Integration */
.post-coal-energy-modernization .coal-energy-modernization-content-section-6 {
  background-color: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-6 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-content-section-6 {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-content-6 {
  max-width: 900px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-integration-box {
  background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-integration-box {
    padding: 2.5rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-box-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.post-coal-energy-modernization .coal-energy-modernization-integration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-integration-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.post-coal-energy-modernization .coal-energy-modernization-integration-icon {
  font-size: 2rem;
  color: var(--color-primary);
}

.post-coal-energy-modernization .coal-energy-modernization-integration-text {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

.post-coal-energy-modernization .coal-energy-modernization-integration-text strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* Conclusion Section */
.post-coal-energy-modernization .coal-energy-modernization-conclusion {
  background-color: var(--color-bg-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-conclusion {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-conclusion-content {
  max-width: 900px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-conclusion-title {
  color: var(--color-text-light);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-conclusion-title {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-conclusion-text {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-conclusion-text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-conclusion-highlight {
  background-color: rgba(0, 102, 204, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-conclusion-highlight {
    padding: 2rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-conclusion-quote {
  color: var(--color-text-light);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Related Posts Section */
.post-coal-energy-modernization .coal-energy-modernization-related-posts {
  background-color: #f5f7fa;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-related-posts {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-coal-energy-modernization .coal-energy-modernization-related-posts {
    padding: 6rem 0;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-related-content {
  max-width: 1200px;
  margin: 0 auto;
}

.post-coal-energy-modernization .coal-energy-modernization-related-title {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-related-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.post-coal-energy-modernization .coal-energy-modernization-related-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-coal-energy-modernization .coal-energy-modernization-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.post-coal-energy-modernization .coal-energy-modernization-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-coal-energy-modernization .coal-energy-modernization-related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .post-coal-energy-modernization .coal-energy-modernization-related-card-body {
    padding: 1.75rem;
  }
}

.post-coal-energy-modernization .coal-energy-modernization-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: 1.4;
}

.post-coal-energy-modernization .coal-energy-modernization-related-card-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.post-coal-energy-modernization .coal-energy-modernization-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.post-coal-energy-modernization .coal-energy-modernization-related-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-coal-energy-modernization .coal-energy-modernization-related-link i {
  font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .post-coal-energy-modernization .coal-energy-modernization-text-with-image {
    grid-template-columns: 1fr;
  }
}

/* Post Page 3 Styles */
/* ============================================
   POST: Power Transmission Infrastructure
   Isolated CSS Scope
   ============================================ */

.post-power-transmission-infrastructure {
  width: 100%;
  overflow: hidden;
}

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

.post-power-transmission-infrastructure .power-transmission-infrastructure-breadcrumbs {
  background-color: var(--color-bg-light-gray);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  overflow: hidden;
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-sm);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 500;
  transition: all var(--transition-base);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-breadcrumbs a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-breadcrumbs span {
  color: var(--color-text-dark-secondary);
}

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

@media (max-width: 767px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-breadcrumbs .container {
    font-size: var(--font-size-xs);
    gap: var(--spacing-xs);
  }
}

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

.post-power-transmission-infrastructure .power-transmission-infrastructure-hero {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 4rem 0 5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-hero {
    padding: 5rem 0 6rem;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-hero {
    padding: 6rem 0 7rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-hero-content {
  max-width: 800px;
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-hero h1 {
  color: var(--color-text-light);
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-hero h1 {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-lg);
  }
}

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

.post-power-transmission-infrastructure .power-transmission-infrastructure-lead {
  color: var(--color-text-light-secondary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-lead {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-meta {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.post-power-transmission-infrastructure .meta-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-text-light-secondary);
  font-size: var(--font-size-sm);
}

.post-power-transmission-infrastructure .meta-item i {
  color: var(--color-primary);
}

/* ============================================
   CONTENT SECTION 1
   ============================================ */

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-1 {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-1 {
    padding: 6rem 0;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-1-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.post-power-transmission-infrastructure .power-transmission-infrastructure-text-block h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-text-block h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-text-block h2 {
    font-size: 2.25rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-text-block p {
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-text-block p {
    margin-bottom: var(--spacing-lg);
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-list {
  list-style: none;
  margin-top: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-list li {
  color: var(--color-text-dark-secondary);
  padding-left: var(--spacing-lg);
  position: relative;
  line-height: var(--line-height-relaxed);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--font-size-lg);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-list li strong {
  color: var(--color-text-dark);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTENT SECTION 2
   ============================================ */

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-2 {
  background-color: var(--color-bg-light-gray);
  color: var(--color-text-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-2 {
    padding: 6rem 0;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-2 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-2 h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-2 h2 {
    font-size: 2.25rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-2 > .container > .power-transmission-infrastructure-content-2-content > p {
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--spacing-xl);
}

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

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-projects-grid {
    gap: 2rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-project-card {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-project-card {
    padding: 2rem;
    gap: var(--spacing-lg);
  }
}

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

.post-power-transmission-infrastructure .project-card-icon {
  font-size: var(--icon-size-2xl);
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-project-card h3 {
  color: var(--color-text-dark);
  font-size: var(--font-size-lg);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-project-card p {
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ============================================
   CONTENT SECTION 3
   ============================================ */

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-3 {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-3 {
    padding: 6rem 0;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-3 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-3 h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-3 h2 {
    font-size: 2.25rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-3 > .container > .power-transmission-infrastructure-content-3-content > p {
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-tech-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-tech-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-tech-blocks {
    gap: 2rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-tech-block {
  background-color: var(--color-primary-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-tech-block {
    padding: 2rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-tech-block h3 {
  color: var(--color-text-dark);
  font-size: var(--font-size-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin: 0;
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-tech-block h3 i {
  color: var(--color-primary);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-tech-block p {
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ============================================
   CONTENT SECTION 4
   ============================================ */

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-4 {
  background-color: #f0f4f8;
  color: var(--color-text-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-4 {
    padding: 6rem 0;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-4-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-4-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-4 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-4 h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-4 h2 {
    font-size: 2.25rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-text-block {
  order: 2;
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-text-block {
    order: 1;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-image-block {
  order: 1;
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-image-block {
    order: 2;
  }
}

/* ============================================
   CONTENT SECTION 5
   ============================================ */

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-5 {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-5 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-5 {
    padding: 6rem 0;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-5 h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-5 h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-5 h2 {
    font-size: 2.25rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-content-5 > .container > .power-transmission-infrastructure-content-5-content > p {
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-relaxed);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: var(--spacing-xl) 0;
  background-color: #f0f4f8;
  padding: 2rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2.5rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
}

.post-power-transmission-infrastructure .highlight-number {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .highlight-number {
    font-size: 2.5rem;
  }
}

.post-power-transmission-infrastructure .highlight-text {
  color: var(--color-text-dark-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .highlight-text {
    font-size: var(--font-size-base);
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-conclusion-box {
  background-color: #f0f4f8;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-conclusion-box {
    padding: 2rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-conclusion-box h3 {
  color: var(--color-text-dark);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-md);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-conclusion-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-conclusion-box li {
  color: var(--color-text-dark-secondary);
  padding-left: var(--spacing-lg);
  position: relative;
  line-height: var(--line-height-relaxed);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-conclusion-box li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* ============================================
   RELATED POSTS SECTION
   ============================================ */

.post-power-transmission-infrastructure .power-transmission-infrastructure-related {
  background-color: var(--color-bg-light-gray);
  color: var(--color-text-dark);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-related {
    padding: 6rem 0;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-related h2 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-related h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-related h2 {
    font-size: 2.25rem;
  }
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

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

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

.post-power-transmission-infrastructure .related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e8ecf1;
}

.post-power-transmission-infrastructure .related-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.post-power-transmission-infrastructure .power-transmission-infrastructure-related-card:hover .related-card-img {
  transform: scale(1.05);
}

.post-power-transmission-infrastructure .related-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .post-power-transmission-infrastructure .related-card-body {
    padding: 1.75rem;
    gap: var(--spacing-lg);
  }
}

.post-power-transmission-infrastructure .related-card-body h3 {
  color: var(--color-text-dark);
  font-size: var(--font-size-lg);
  margin: 0;
  line-height: var(--line-height-tight);
}

.post-power-transmission-infrastructure .related-card-body p {
  color: var(--color-text-dark-secondary);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.post-power-transmission-infrastructure .related-card-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  transition: all var(--transition-base);
  font-size: var(--font-size-sm);
  align-self: flex-start;
}

.post-power-transmission-infrastructure .related-card-link:hover {
  color: var(--color-primary-dark);
  gap: var(--spacing-sm);
}

.post-power-transmission-infrastructure .related-card-link i {
  font-size: var(--icon-size-sm);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 767px) {
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-1-content,
  .post-power-transmission-infrastructure .power-transmission-infrastructure-content-4-content {
    grid-template-columns: 1fr;
  }
}

/* Post Page 4 Styles */
/* Post: Energy System Digitalization - Complete CSS Isolation */

.post-energy-system-digitalization {
  width: 100%;
}

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

.post-energy-system-digitalization .energy-system-digitalization-breadcrumbs {
  background-color: var(--color-bg-light-gray);
  padding: 1rem 0;
  overflow: hidden;
}

.post-energy-system-digitalization .energy-system-digitalization-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  flex-wrap: wrap;
}

.post-energy-system-digitalization .energy-system-digitalization-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 500;
}

.post-energy-system-digitalization .energy-system-digitalization-breadcrumbs a:hover {
  text-decoration: underline;
}

.post-energy-system-digitalization .energy-system-digitalization-breadcrumbs-separator {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.post-energy-system-digitalization .energy-system-digitalization-breadcrumbs span:last-child {
  color: var(--color-text-dark);
  font-weight: 500;
}

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

.post-energy-system-digitalization .energy-system-digitalization-hero {
  background: linear-gradient(135deg, #0a0e27 0%, #1a2847 100%);
  padding: 4rem 0 3rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-hero {
    padding: 5rem 0 4rem;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-hero {
    padding: 6rem 0 5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-energy-system-digitalization .energy-system-digitalization-hero-title {
  font-size: 2.25rem;
  color: var(--color-text-light);
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-hero-title {
    font-size: 3.5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-hero-lead {
  font-size: 1rem;
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 800px;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-hero-lead {
    font-size: 1.125rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.post-energy-system-digitalization .energy-system-digitalization-hero-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--font-size-sm);
  color: var(--color-text-light-secondary);
}

.post-energy-system-digitalization .energy-system-digitalization-hero-meta-item i {
  font-size: var(--icon-size-sm);
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-introduction {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-introduction {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-introduction-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-introduction-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-introduction-text h2 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-introduction-text h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-introduction-text p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-introduction-text p {
    font-size: 1rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-introduction-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================================
   DRIVERS SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-drivers {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-drivers {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-drivers {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-drivers-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-drivers-content h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-drivers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-drivers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-driver-card {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-base);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-driver-card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-driver-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.post-energy-system-digitalization .energy-system-digitalization-driver-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: var(--icon-size-lg);
}

.post-energy-system-digitalization .energy-system-digitalization-driver-card h3 {
  font-size: 1.125rem;
  color: var(--color-text-dark);
}

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

.post-energy-system-digitalization .energy-system-digitalization-driver-card p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-driver-card p {
    font-size: 0.95rem;
  }
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-technology {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-technology {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-technology {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-technology-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-technology-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-technology-text h2 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-technology-text h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-technology-text h3 {
  font-size: 1.125rem;
  color: var(--color-text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-technology-text h3 {
    font-size: 1.25rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-technology-text p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-technology-text p {
    font-size: 1rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-technology-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.post-energy-system-digitalization .energy-system-digitalization-benefits {
  background-color: #0f1e3c;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-benefits {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-benefits {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-benefits-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-benefits-content h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-benefits-list {
    gap: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-benefit-item {
    gap: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-benefit-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-text-light);
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.post-energy-system-digitalization .energy-system-digitalization-benefit-text h4 {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-benefit-text h4 {
    font-size: 1.125rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-benefit-text p {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-benefit-text p {
    font-size: 0.95rem;
  }
}

/* ============================================
   KAZAKHSTAN SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-kazakhstan {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-kazakhstan {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-kazakhstan {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-kazakhstan-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-kazakhstan-content h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-kazakhstan-content p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-kazakhstan-content p {
    font-size: 1rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-kazakhstan-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-kazakhstan-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-kazakhstan-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-highlight-box {
  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-energy-system-digitalization .energy-system-digitalization-highlight-box {
    padding: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-highlight-box h4 {
  font-size: 1rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-highlight-box h4 {
    font-size: 1.125rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-highlight-box p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-highlight-box p {
    font-size: 0.95rem;
  }
}

/* ============================================
   CHALLENGES SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-challenges {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-challenges {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-challenges {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-challenges-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-challenges-content h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.post-energy-system-digitalization .energy-system-digitalization-challenge-card {
  background-color: var(--color-bg-light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 3px solid var(--color-accent);
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-challenge-card {
    padding: 2rem;
    gap: 1rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-challenge-card h3 {
  font-size: 1.125rem;
  color: var(--color-text-dark);
}

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

.post-energy-system-digitalization .energy-system-digitalization-challenge-card p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-challenge-card p {
    font-size: 0.95rem;
  }
}

/* ============================================
   FUTURE SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-future {
  background-color: var(--color-bg-light);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-future {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-future {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-future-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-future-content h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-future-content > p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-future-content > p {
    font-size: 1rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-future-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-future-list {
    gap: 1.25rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-future-list li {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  padding-left: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-future-list li {
    font-size: 1rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-future-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.post-energy-system-digitalization .energy-system-digitalization-future-list li strong {
  color: var(--color-text-dark);
}

/* ============================================
   CONCLUSION SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-conclusion {
  background: linear-gradient(135deg, #1a2847 0%, #0f1e3c 100%);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-conclusion {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-conclusion-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-conclusion-content h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-conclusion-content p {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-conclusion-content p {
    font-size: 1rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-conclusion-cta {
  background-color: rgba(0, 102, 204, 0.15);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-conclusion-cta {
    padding: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-conclusion-cta p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin: 0;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-conclusion-cta p {
    font-size: 1.125rem;
  }
}

/* ============================================
   RELATED POSTS SECTION
   ============================================ */

.post-energy-system-digitalization .energy-system-digitalization-related {
  background-color: var(--color-bg-light-gray);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-related {
    padding: 5rem 0;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-related-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-related-content h2 {
    font-size: 2rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .post-energy-system-digitalization .energy-system-digitalization-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-related-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.post-energy-system-digitalization .energy-system-digitalization-related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

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

.post-energy-system-digitalization .energy-system-digitalization-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-energy-system-digitalization .energy-system-digitalization-related-card:hover .energy-system-digitalization-related-card-image img {
  transform: scale(1.05);
}

.post-energy-system-digitalization .energy-system-digitalization-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-related-card-content {
    padding: 1.75rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-related-card h3 {
  font-size: 1rem;
  color: var(--color-text-dark);
  margin: 0;
}

@media (min-width: 768px) {
  .post-energy-system-digitalization .energy-system-digitalization-related-card h3 {
    font-size: 1.125rem;
  }
}

.post-energy-system-digitalization .energy-system-digitalization-related-card p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.post-energy-system-digitalization .energy-system-digitalization-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.post-energy-system-digitalization .energy-system-digitalization-related-card-link:hover {
  color: var(--color-primary-dark);
  gap: 0.75rem;
}

.post-energy-system-digitalization .energy-system-digitalization-related-card-link i {
  font-size: var(--icon-size-sm);
  transition: transform var(--transition-base);
}

/* Post Page 5 Styles */
/* Post Energy Investment Projects - Complete Styling */

  /* ==================== BREADCRUMBS ==================== */
  .energy-investment-projects-breadcrumbs {
    background-color: var(--color-bg-light-gray);
    overflow: hidden;
  }

  .energy-investment-projects-breadcrumbs .container {
    padding: 1rem var(--spacing-md);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-breadcrumbs .container {
      padding: 1rem var(--spacing-lg);
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-breadcrumbs .container {
      padding: 1rem var(--spacing-xl);
    }
  }

  .energy-investment-projects-breadcrumbs a {
    color: var(--color-primary);
    font-size: var(--font-size-sm);
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-breadcrumbs a {
      font-size: var(--font-size-base);
    }
  }

  .energy-investment-projects-breadcrumbs a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  .energy-investment-projects-breadcrumbs .separator {
    color: var(--color-text-muted);
    margin: 0 0.5rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-breadcrumbs .separator {
      margin: 0 0.75rem;
    }
  }

  .energy-investment-projects-breadcrumbs span:last-child {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: var(--font-size-sm);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-breadcrumbs span:last-child {
      font-size: var(--font-size-base);
    }
  }

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

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

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

  .energy-investment-projects-hero-content {
    display: flex;
    flex-direction: column;
  }

  .energy-investment-projects-hero h1 {
    color: var(--color-text-light);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-tight);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-hero h1 {
      font-size: 3.5rem;
      margin-bottom: var(--spacing-lg);
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-hero h1 {
      font-size: var(--font-size-5xl);
      margin-bottom: var(--spacing-xl);
    }
  }

  .energy-investment-projects-lead {
    color: var(--color-text-light-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    max-width: 700px;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-lead {
      font-size: var(--font-size-lg);
    }
  }

  /* ==================== CONTENT SECTION 1 ==================== */
  .energy-investment-projects-content-1 {
    background-color: var(--color-bg-light);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-1 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-1 {
      padding: 6rem 0;
    }
  }

  .energy-investment-projects-content-1-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

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

  .energy-investment-projects-text-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-text-block {
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-text-block {
      gap: 1.5rem;
    }
  }

  .energy-investment-projects-content-1 h2 {
    color: var(--color-text-dark);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-1 h2 {
      font-size: 2.75rem;
    }
  }

  .energy-investment-projects-content-1 p {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-1 p {
      font-size: var(--font-size-lg);
    }
  }

  .energy-investment-projects-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-list {
      gap: 1rem;
    }
  }

  .energy-investment-projects-list li {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    padding-left: 1.75rem;
    position: relative;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-list li {
      font-size: var(--font-size-lg);
      padding-left: 2rem;
    }
  }

  .energy-investment-projects-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
  }

  .energy-investment-projects-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-image {
      max-height: 450px;
    }
  }

  /* ==================== CONTENT SECTION 2 ==================== */
  .energy-investment-projects-content-2 {
    background-color: var(--color-bg-medium);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-2 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-2 {
      padding: 6rem 0;
    }
  }

  .energy-investment-projects-content-2-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-2-wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .energy-investment-projects-image-side {
    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: 1024px) {
    .energy-investment-projects-image-side {
      order: 0;
      max-height: 450px;
    }
  }

  .energy-investment-projects-content-2 h2 {
    color: var(--color-text-dark);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-2 h2 {
      font-size: 2.75rem;
    }
  }

  .energy-investment-projects-content-2 p {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-2 p {
      font-size: var(--font-size-lg);
    }
  }

  .energy-investment-projects-content-2 .energy-investment-projects-list li {
    color: var(--color-text-dark-secondary);
  }

  /* ==================== CONTENT SECTION 3 ==================== */
  .energy-investment-projects-content-3 {
    background-color: var(--color-bg-light);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-3 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-3 {
      padding: 6rem 0;
    }
  }

  .energy-investment-projects-content-3-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-3-wrapper {
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-3-wrapper {
      gap: 2.5rem;
    }
  }

  .energy-investment-projects-content-3 h2 {
    color: var(--color-text-dark);
    font-size: var(--font-size-2xl);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-3 h2 {
      font-size: 2.75rem;
    }
  }

  .energy-investment-projects-content-3 p {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-3 p {
      font-size: var(--font-size-lg);
    }
  }

  .energy-investment-projects-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-highlights {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-highlights {
      gap: 2rem;
    }
  }

  .energy-investment-projects-highlight-card {
    background-color: var(--color-bg-light-gray);
    padding: 1rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow-sm);
  }

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

  @media (min-width: 1024px) {
    .energy-investment-projects-highlight-card {
      padding: 1.75rem;
    }
  }

  .energy-investment-projects-highlight-icon {
    font-size: var(--icon-size-lg);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .energy-investment-projects-highlight-card h3 {
    color: var(--color-text-dark);
    font-size: var(--font-size-lg);
    margin: 0;
  }

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

  .energy-investment-projects-highlight-card p {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-highlight-card p {
      font-size: var(--font-size-base);
    }
  }

  /* ==================== CONTENT SECTION 4 ==================== */
  .energy-investment-projects-content-4 {
    background-color: var(--color-primary-light);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-4 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-4 {
      padding: 6rem 0;
    }
  }

  .energy-investment-projects-content-4-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-4-wrapper {
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-4-wrapper {
      gap: 2.5rem;
    }
  }

  .energy-investment-projects-content-4 h2 {
    color: var(--color-text-dark);
    font-size: var(--font-size-2xl);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-4 h2 {
      font-size: 2.75rem;
    }
  }

  .energy-investment-projects-content-4 p {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-4 p {
      font-size: var(--font-size-lg);
    }
  }

  .energy-investment-projects-content-4 .energy-investment-projects-list li {
    color: var(--color-text-dark-secondary);
  }

  /* ==================== CONTENT SECTION 5 ==================== */
  .energy-investment-projects-content-5 {
    background-color: var(--color-bg-light);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-5 {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-5 {
      padding: 6rem 0;
    }
  }

  .energy-investment-projects-content-5-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-5-wrapper {
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-content-5-wrapper {
      gap: 2.5rem;
    }
  }

  .energy-investment-projects-content-5 h2 {
    color: var(--color-text-dark);
    font-size: var(--font-size-2xl);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-5 h2 {
      font-size: 2.75rem;
    }
  }

  .energy-investment-projects-content-5 p {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-content-5 p {
      font-size: var(--font-size-lg);
    }
  }

  .energy-investment-projects-content-5 .energy-investment-projects-list li {
    color: var(--color-text-dark-secondary);
  }

  /* ==================== CONCLUSION SECTION ==================== */
  .energy-investment-projects-conclusion {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a2847 100%);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-conclusion {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-conclusion {
      padding: 6rem 0;
    }
  }

  .energy-investment-projects-conclusion-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-conclusion-content {
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-conclusion-content {
      gap: 2.5rem;
    }
  }

  .energy-investment-projects-conclusion h2 {
    color: var(--color-text-light);
    font-size: var(--font-size-2xl);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-conclusion h2 {
      font-size: 2.75rem;
    }
  }

  .energy-investment-projects-conclusion p {
    color: var(--color-text-light-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-conclusion p {
      font-size: var(--font-size-lg);
    }
  }

  /* ==================== RELATED POSTS SECTION ==================== */
  .energy-investment-projects-related {
    background-color: var(--color-bg-light-gray);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-related {
      padding: 6rem 0;
    }
  }

  .energy-investment-projects-related-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-related-content {
      gap: 3rem;
    }
  }

  .energy-investment-projects-related h2 {
    color: var(--color-text-dark);
    font-size: var(--font-size-2xl);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-related h2 {
      font-size: 2.75rem;
    }
  }

  .energy-investment-projects-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .energy-investment-projects-related-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
  }

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

  .energy-investment-projects-related-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .energy-investment-projects-related-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-related-body {
      padding: 1.75rem;
      gap: 1.25rem;
    }
  }

  @media (min-width: 1024px) {
    .energy-investment-projects-related-body {
      padding: 2rem;
    }
  }

  .energy-investment-projects-related-card h3 {
    color: var(--color-text-dark);
    font-size: var(--font-size-lg);
    margin: 0;
    line-height: var(--line-height-tight);
  }

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

  .energy-investment-projects-related-card p {
    color: var(--color-text-dark-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: var(--line-height-relaxed);
    flex: 1;
  }

  @media (min-width: 768px) {
    .energy-investment-projects-related-card p {
      font-size: var(--font-size-base);
    }
  }

  .energy-investment-projects-related-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .energy-investment-projects-related-link {
      font-size: var(--font-size-base);
    }
  }

  .energy-investment-projects-related-link:hover {
    color: var(--color-primary-dark);
    gap: 0.75rem;
  }

  .energy-investment-projects-related-link i {
    font-size: var(--icon-size-sm);
  }

  /* ==================== RESPONSIVE UTILITIES ==================== */
  @media (max-width: 1023px) {
    .energy-investment-projects-text-block {
      order: -1;
    }
  }

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

.energy-docs {
  font-family: var(--font-primary);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.energy-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.energy-docs-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
  .energy-docs-content {
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .energy-docs-content {
    gap: var(--spacing-2xl);
    padding: var(--spacing-3xl) 0;
  }
}

.energy-docs h1 {
  font-family: var(--font-display);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin: 0;
}

@media (min-width: 768px) {
  .energy-docs h1 {
    font-size: var(--font-size-4xl);
  }
}

@media (min-width: 1024px) {
  .energy-docs h1 {
    font-size: var(--font-size-5xl);
  }
}

.energy-docs .updated-date {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin: var(--spacing-sm) 0 0 0;
}

.energy-docs h2 {
  font-family: var(--font-display);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: var(--line-height-tight);
  margin: var(--spacing-lg) 0 var(--spacing-md) 0;
  padding-top: var(--spacing-lg);
  border-top: 2px solid var(--color-border);
}

@media (min-width: 768px) {
  .energy-docs h2 {
    font-size: var(--font-size-3xl);
    margin: var(--spacing-xl) 0 var(--spacing-lg) 0;
    padding-top: var(--spacing-xl);
  }
}

@media (min-width: 1024px) {
  .energy-docs h2 {
    font-size: var(--font-size-4xl);
  }
}

.energy-docs p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--spacing-md) 0;
}

@media (min-width: 768px) {
  .energy-docs p {
    font-size: var(--font-size-base);
    margin: 0 0 var(--spacing-lg) 0;
  }
}

.energy-docs p:last-child {
  margin-bottom: 0;
}

.energy-docs ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

@media (min-width: 768px) {
  .energy-docs ul {
    margin: var(--spacing-lg) 0;
  }
}

.energy-docs li {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-dark-secondary);
  margin: var(--spacing-sm) 0;
  padding-left: var(--spacing-lg);
  position: relative;
}

@media (min-width: 768px) {
  .energy-docs li {
    font-size: var(--font-size-base);
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
  }
}

.energy-docs li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.contact-section {
  background-color: var(--color-bg-light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
  .contact-section {
    padding: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: var(--spacing-2xl);
  }
}

.contact-section h2 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.contact-item {
  margin: var(--spacing-lg) 0;
}

@media (min-width: 768px) {
  .contact-item {
    margin: var(--spacing-xl) 0;
  }
}

.contact-item-label {
  font-weight: 600;
  font-size: var(--font-size-sm);
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: var(--spacing-xs);
}

@media (min-width: 768px) {
  .contact-item-label {
    font-size: var(--font-size-base);
  }
}

.contact-item-value {
  font-size: var(--font-size-base);
  color: var(--color-text-dark-secondary);
  word-break: break-word;
}

@media (min-width: 768px) {
  .contact-item-value {
    font-size: var(--font-size-lg);
  }
}

.section-spacing {
  overflow: hidden;
}

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

  /* ============================================
     THANK YOU PAGE STYLES
     ============================================ */

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

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

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 8rem 1rem;
    }
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-md);
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: var(--spacing-lg);
    }
  }

  /* Thank Icon */
  .thank-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-full);
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @media (min-width: 768px) {
    .thank-icon-wrapper {
      width: 120px;
      height: 120px;
    }
  }

  .thank-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--color-primary);
  }

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

  @keyframes iconBounce {
    0% {
      transform: scale(0.3);
      opacity: 0;
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Hero Heading */
  .thank-hero-section h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin: 0;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 4rem;
    }
  }

  /* Lead Text */
  .thank-lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 500;
    margin: 0;
  }

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

  /* Subtitle */
  .thank-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
    max-width: 500px;
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .thank-subtitle {
      font-size: 1rem;
      max-width: 600px;
    }
  }

  /* Next Steps Section */
  .thank-next-section {
    background-color: var(--color-bg-light);
    padding: 3rem 1rem;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-next-section {
      padding: 5rem 1rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-next-section {
      padding: 6rem 1rem;
    }
  }

  .thank-next-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
  }

  @media (min-width: 768px) {
    .thank-next-content {
      gap: var(--spacing-2xl);
    }
  }

  /* Section Heading */
  .thank-next-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    text-align: center;
  }

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

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

  /* Steps Grid */
  .thank-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  @media (min-width: 768px) {
    .thank-steps-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--spacing-lg);
    }
  }

  /* Step Card */
  .thank-step-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-bg-light-gray);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all var(--transition-base);
  }

  @media (min-width: 768px) {
    .thank-step-card {
      padding: var(--spacing-lg);
      gap: var(--spacing-md);
    }
  }

  .thank-step-card:hover {
    background-color: var(--color-bg-medium);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  /* Step Number */
  .thank-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0 auto;
  }

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

  /* Step Card Heading */
  .thank-step-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
  }

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

  /* Step Card Text */
  .thank-step-card p {
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

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

  /* Info Box */
  .thank-info-box {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--color-primary-light);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
  }

  @media (min-width: 768px) {
    .thank-info-box {
      flex-direction: row;
      gap: var(--spacing-lg);
      padding: var(--spacing-lg) var(--spacing-xl);
      align-items: flex-start;
    }
  }

  .thank-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .thank-info-icon {
      width: 60px;
      height: 60px;
    }
  }

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

  .thank-info-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .thank-info-box h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-info-box h3 {
      font-size: 1.25rem;
    }
  }

  .thank-info-box p {
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
    margin: 0;
    line-height: var(--line-height-relaxed);
  }

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

  /* Contact Box */
  .thank-contact-box {
    padding: var(--spacing-lg);
    background-color: var(--color-bg-light-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
  }

  @media (min-width: 768px) {
    .thank-contact-box {
      padding: var(--spacing-xl);
    }
  }

  .thank-contact-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 var(--spacing-sm) 0;
  }

  @media (min-width: 768px) {
    .thank-contact-box h3 {
      font-size: 1.375rem;
    }
  }

  .thank-contact-box p {
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
    margin: 0 0 var(--spacing-md) 0;
    line-height: var(--line-height-relaxed);
  }

  @media (min-width: 768px) {
    .thank-contact-box p {
      font-size: 0.95rem;
      margin: 0 0 var(--spacing-lg) 0;
    }
  }

  /* Contact List */
  .thank-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  @media (min-width: 768px) {
    .thank-contact-list {
      gap: var(--spacing-md);
    }
  }

  .thank-contact-list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--color-text-dark-secondary);
  }

  @media (min-width: 768px) {
    .thank-contact-list li {
      font-size: 0.95rem;
      gap: var(--spacing-md);
    }
  }

  .thank-contact-list i {
    color: var(--color-primary);
    font-size: var(--icon-size-md);
    flex-shrink: 0;
  }

  /* Button Wrapper */
  .thank-button-wrapper {
    display: flex;
    justify-content: center;
    padding-top: var(--spacing-lg);
  }

  @media (min-width: 768px) {
    .thank-button-wrapper {
      padding-top: var(--spacing-xl);
    }
  }

  /* Return Home Button */
  .thank-home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border: 2px solid var(--color-primary);
  }

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

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

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

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

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

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

  html {
    scroll-behavior: smooth;
  }

  /* ===== ERROR PAGE STYLES ===== */

  .error-page {
    background-color: var(--color-bg-dark);
    min-height: 100vh;
    overflow: hidden;
  }

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

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

  @media (min-width: 1024px) {
    .error-hero-section {
      padding: 6rem 0;
      min-height: 80vh;
      display: flex;
      align-items: center;
    }
  }

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

  @media (min-width: 768px) {
    .error-hero-content {
      gap: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: 4rem;
    }
  }

  /* Illustration */
  .error-illustration {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .error-illustration {
      width: 280px;
      height: 280px;
    }
  }

  @media (min-width: 1024px) {
    .error-illustration {
      width: 320px;
      height: 320px;
    }
  }

  /* Grid Background */
  .power-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
  }

  .grid-line {
    position: absolute;
    background-color: var(--color-primary);
  }

  .grid-line.horizontal {
    width: 100%;
    height: 2px;
    top: 25%;
    left: 0;
  }

  .grid-line.horizontal.offset {
    top: 75%;
  }

  .grid-line.vertical {
    width: 2px;
    height: 100%;
    left: 25%;
    top: 0;
  }

  .grid-line.vertical.offset {
    left: 75%;
  }

  /* Error Code */
  .error-code-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .code-digit {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    animation: float 3s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .code-digit {
      font-size: 5.5rem;
    }
  }

  @media (min-width: 1024px) {
    .code-digit {
      font-size: 6.5rem;
    }
  }

  .code-digit:nth-child(1) {
    animation-delay: 0s;
  }

  .code-digit:nth-child(3) {
    animation-delay: 0.4s;
  }

  .code-symbol {
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.7;
    animation: spin 4s linear infinite;
  }

  @media (min-width: 768px) {
    .code-symbol {
      font-size: 4rem;
    }
  }

  @media (min-width: 1024px) {
    .code-symbol {
      font-size: 4.5rem;
    }
  }

  /* Power Icons */
  .power-icons {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-bolt,
  .icon-plug,
  .icon-zap {
    position: absolute;
    font-size: var(--icon-size-lg);
    color: var(--color-accent);
    opacity: 0;
    animation: flicker 2s ease-in-out infinite;
  }

  @media (min-width: 768px) {
    .icon-bolt,
    .icon-plug,
    .icon-zap {
      font-size: var(--icon-size-xl);
    }
  }

  .icon-bolt {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }

  .icon-plug {
    top: 10%;
    right: 10%;
    animation-delay: 0.6s;
  }

  .icon-zap {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.2s;
  }

  /* Error Text Content */
  .error-text-content {
    text-align: center;
    max-width: 500px;
  }

  @media (min-width: 1024px) {
    .error-text-content {
      text-align: left;
      flex: 1;
    }
  }

  .error-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    line-height: var(--line-height-tight);
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: 3.5rem;
      margin-bottom: var(--spacing-md);
    }
  }

  @media (min-width: 1024px) {
    .error-title {
      font-size: 4rem;
      margin-bottom: var(--spacing-lg);
    }
  }

  .error-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1.5rem;
      margin-bottom: var(--spacing-lg);
    }
  }

  .error-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
  }

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

  /* Help Section */
  .error-help-section {
    background-color: var(--color-bg-darker);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

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

  @media (min-width: 768px) {
    .error-help-content {
      gap: 3rem;
    }
  }

  .help-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--spacing-sm);
  }

  @media (min-width: 768px) {
    .help-title {
      font-size: 2.5rem;
      margin-bottom: var(--spacing-md);
    }
  }

  @media (min-width: 1024px) {
    .help-title {
      font-size: 2.75rem;
      margin-bottom: var(--spacing-lg);
    }
  }

  /* Help Cards Grid */
  .help-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
  }

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

  @media (min-width: 1024px) {
    .help-options {
      gap: 2.5rem;
    }
  }

  .help-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(0, 102, 204, 0.05);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
  }

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

  .help-card:hover {
    background-color: rgba(0, 102, 204, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-4px);
  }

  .help-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(255, 107, 53, 0.1));
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    font-size: var(--icon-size-lg);
    margin-bottom: var(--spacing-md);
  }

  @media (min-width: 768px) {
    .help-icon {
      width: 70px;
      height: 70px;
      font-size: var(--icon-size-xl);
      margin-bottom: var(--spacing-lg);
    }
  }

  .help-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
  }

  @media (min-width: 768px) {
    .help-card h3 {
      font-size: 1.25rem;
      margin-bottom: var(--spacing-md);
    }
  }

  .help-card p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: var(--line-height-relaxed);
  }

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

  /* Action Buttons */
  .error-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
  }

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

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

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

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

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

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

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

  .btn-secondary:hover {
    background-color: rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
  }

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

  /* Status Section */
  .error-status-section {
    background-color: var(--color-bg-dark);
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border-dark);
  }

  @media (min-width: 768px) {
    .error-status-section {
      padding: 3rem 0;
    }
  }

  .error-status-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

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

  .status-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
  }

  .pulse {
    width: 12px;
    height: 12px;
    background-color: var(--color-success);
    border-radius: 50%;
    animation: pulse-animation 2s ease-in-out infinite;
  }

  .status-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
  }

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

  .status-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    max-width: 500px;
  }

  @media (min-width: 768px) {
    .status-description {
      font-size: 0.95rem;
    }
  }

  /* Animations */
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
  }

  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

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

  @keyframes pulse-animation {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.6;
      transform: scale(1.2);
    }
  }

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

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

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