.sidebar {
    position: sticky;
    top: 2rem;
    border-radius: 10px;
  }
  .category-badge {
    background-color: #e8f4e5;
    color: #6D9852;
    font-size: 0.85rem;
    border-radius: 15px;
  }
  .author-meta {
    gap: 19px;
    span{
        font-size: 0.9rem;
        color: #5D5D5D;
    }
  }
  .content-image img {
    width: 100%;
    border-radius: 0.75rem;
  }
  .icon-group i {
    font-size: 1.25rem;
    margin-right: 1.5rem;
    color: #377FFE;
    cursor: pointer;
  }

  .icon-group{
    gap: 73px;
  }

  .breadcrumb-item{
    a{
        color: #000000;
        text-decoration: unset;
    }
  }

  .breadcrumb-item.active{
        color: #377FFE !important;
  }

  .blog-details-icons-div{
    border-radius: 100%;
    padding: 10px;
    border: 1px solid #E9E9E9;
    img{
        width: 22px;
        height: 22px;
    }
  }

  .sidebar{
    padding: 1.4rem 2.5rem;
  }

  .sidebar-heading{
    font-weight: 700 !important;
  }

  .swiper-slide{
    display: flex !important;
    justify-content: center;
  }

  /* Dynamic Table of Contents Styles */
  .sidebar ul li a {
    transition: color 0.2s ease;
    line-height: 1.4;
    display: block;
    padding: 0.25rem 0;
  }

  .sidebar ul li a:hover {
    color: #377FFE !important;
  }

  .sidebar ul li a:focus {
    color: #377FFE !important;
    outline: none;
  }

  /* Smooth scrolling for anchor links */
  html {
    scroll-behavior: smooth;
  }

  /* Add some spacing for headings with anchors */
  .content h1[id], .content h2[id], .content h3[id], 
  .content h4[id], .content h5[id], .content h6[id] {
    scroll-margin-top: 2rem;
  }

/* Banner Overlay Styles */
.banner-container {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.banner-heading {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white !important;
}

.banner-heading h1,
.banner-heading h2,
.banner-heading h3,
.banner-heading h4,
.banner-heading h5,
.banner-heading h6 {
  color: white !important;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 700;
}

.banner-subheading {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 80%;
  color: white !important;
}

.banner-subheading p {
  color: white !important;
  margin: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-heading {
    font-size: 2rem;
  }
  
  .banner-subheading {
    font-size: 1.1rem;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .banner-heading {
    font-size: 1.5rem;
  }
  
  .banner-subheading {
    font-size: 1rem;
    max-width: 95%;
  }
}