 .blog-navbar {
      background: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 15px 0;
    }

.z-\[999999999999\] {
  z-index: 2 !important;
}
    
    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .navbar-brand .brand-link {
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    
    .logo-image {
      height: 50px;
      width: auto;
      transition: transform 0.3s ease;
    }
    
    .logo-image:hover {
      transform: scale(1.05);
    }
    
    .navbar-menu {
      display: flex;
      gap: 30px;
      align-items: center;
    }
    
    .nav-link {
      color: #2C2C2C;
      text-decoration: none;
      font-weight: 500;
      font-size: 1.1rem;
      transition: color 0.3s ease;
    }
    
    .nav-link:hover {
      color: #2C3E50;
    }
    
    /* Mobile Navigation Toggle */
    .mobile-nav-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      padding: 5px;
      z-index: 1001;
    }
    
    /* Hide mobile toggle on desktop */
    @media (min-width: 769px) {
      .mobile-nav-toggle {
        display: none !important;
      }
    }
    
    .mobile-nav-toggle span {
      width: 25px;
      height: 3px;
      background: #2C3E50;
      margin: 3px 0;
      transition: all 0.3s ease;
      border-radius: 2px;
    }
    
    .mobile-nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
    
    .mobile-nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    @media (max-width: 768px) {
      .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
      
      .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
      }
      
      .navbar-menu.active {
        left: 0;
      }
      
      .mobile-nav-toggle {
        display: flex;
      }
      
      .logo-image {
        height: 40px;
      }
      
      .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2C3E50;
        padding: 15px 0;
        border-bottom: 2px solid transparent;
      }
      
      .nav-link:hover {
        border-bottom-color: #2C3E50;
        transform: none;
      }
    }

    /* Blog-specific overrides */
    .blog-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 60px 20px;
      background: #FAFAFA;
      min-height: 100vh;
    }
    
    .blog-article {
      background: white;
      padding: 60px;
      border-radius: 0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
      border: 1px solid #E5E5E5;
    }
    
    .blog-header {
      text-align: center;
      margin-bottom: 50px;
      padding-bottom: 30px;
      border-bottom: 2px solid #2C3E50;
    }
    
    .blog-title {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 600;
      color: #2C3E50;
      margin-bottom: 20px;
      line-height: 1.2;
    }
    
    .blog-meta {
      color: #6C6C6C;
      font-size: 1rem;
      margin-bottom: 20px;
      display: none;
    }
    
    .blog-lead {
      font-size: 1.3rem;
      color: #2C2C2C;
      line-height: 1.6;
      font-weight: 400;
    }
    
    .blog-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      color: #2C3E50;
      margin: 50px 0 20px;
      font-weight: 600;
    }
    
    .blog-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      color: #2C3E50;
      margin: 30px 0 15px;
      font-weight: 600;
    }
    
    .blog-content p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #2C2C2C;
      margin-bottom: 20px;
    }
    
    .blog-content ul, .blog-content ol {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #2C2C2C;
      margin-bottom: 20px;
      padding-left: 30px;
    }
    
    .blog-content li {
      margin-bottom: 10px;
    }
    
    .toc {
      background: #FAFAFA;
      border: 1px solid #E5E5E5;
      border-radius: 0;
      padding: 30px;
      margin: 40px 0;
    }
    
    .toc strong {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      color: #2C3E50;
      display: block;
      margin-bottom: 20px;
    }
    
    .toc ol {
      list-style: none;
      padding-left: 0;
    }
    
    .toc li {
      margin-bottom: 10px;
    }
    
    .toc a {
      color: #2C3E50;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
    .toc a:hover {
      color: #34495E;
    }
    
    .highlight {
      background: #2C3E50;
      color: white;
      padding: 30px;
      border-radius: 0;
      margin: 40px 0;
      div{
        color: #2C3E50;
      }
    }
    
    .highlight h2 {
      color: white;
      margin-top: 0;
      display: none;
    }
    
    .highlight p {
      color: #2C3E50;
      font-size: 1.2rem;
    }
    
    .proscons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 30px 0;
    }
    
    .card {
      background: white;
      border: 1px solid #E5E5E5;
      border-radius: 0;
      padding: 30px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .card h3 {
      color: #2C3E50;
      margin-top: 0;
      font-size: 1.4rem;
    }
    
    .card ul {
      padding-left: 20px;
    }
    
    .card li {
      margin-bottom: 8px;
    }
    
    figure {
      margin: 40px 0;
      text-align: center;
    }
    
    figure img {
      width: 100%;
      height: auto;
      border-radius: 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      image-rendering: high-quality;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      transform: translateZ(0);
    }
    
    figcaption {
      font-size: 0.9rem;
      color: #6C6C6C;
      margin-top: 15px;
      font-style: italic;
    }
    
    .cta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin: 40px 0;
      justify-content: center;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 0;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 1rem;
    }
    
    .btn.primary {
      background: #2C3E50;
      color: white;
      box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
    }
    
    .btn.primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    }
    
    .btn:not(.primary) {
      background: white;
      color: #2C3E50;
      border: 1px solid #2C3E50;
    }
    
    .btn:not(.primary):hover {
      background: #2C3E50;
      color: white;
    }
    
    .meta {
      color: #6C6C6C;
      font-size: 0.9rem;
      margin-top: 20px;
      text-align: center;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
      .blog-container {
        padding: 20px 15px;
      }
      
      .blog-article {
        padding: 30px 20px;
      }
      
      .blog-title {
        font-size: 2.5rem;
      }
      
      .blog-content h2 {
        font-size: 2rem;
      }
      
      .proscons {
        grid-template-columns: 1fr;
      }
      
      .cta {
        flex-direction: column;
        align-items: center;
      }
    }