    :root {
      --primary-color: #047857;
      --primary-light: #059669;
      --primary-dark: #065f46;
    }
    body {
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    }
    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    .sticky-nav {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(8px);
    }
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-thumb {
      background: var(--primary-color);
      border-radius: 10px;
    }

      .carousel-item {
    display: none;
    transition: transform 0.6s ease;
  }
  .carousel-item.active {
    display: flex;
  }
  .prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1rem 0;
  }
  .prose h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
  }
  .prose p {
    margin-bottom: 1rem;
    line-height: 1.6;
  }