  .blog-details-area {
      padding: 40px 0;
  }



  .blog-details-content p {
      color: #171818;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 16px;
  }

  .blog-main-image {
      width: 100%;
      max-height: 480px;
      overflow: hidden;
      border-radius: 12px;
      margin: 30px 0;
  }

  .blog-main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .blog-details-content h1,
  .blog-details-content h2,
  .blog-details-content h3,
  h4,
  h5,
  h6 {
      color: #0f172a;
      font-weight: 500;
      margin-top: 15px;
      margin-bottom: 10px;
      font-size: 20px;
  }

  .custom-bullet-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 25px;
  }

  .custom-bullet-list li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 10px;
      color: #334155;
  }

  .custom-bullet-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 6px;
      height: 6px;
      background-color: #dc3545;
      border-radius: 50%;
  }

  .custom-bullet-list li a {
      color: #334155;
      text-decoration: none;
      transition: color 0.2s ease;
  }

  .custom-bullet-list li a:hover {
      color: #dc3545;
  }

  /* Sidebar Styling matching the provided image */
  .blog-sidebar {
      background: #F5F5F5;
      padding: 15px;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  }

  .sidebar-title {
      font-size: 20px;
      font-weight: 500;
      color: #0f172a;
      text-align: center;
      margin-bottom: 15px;
  }

  .sidebar-post-item {
      margin-bottom: 25px;
      padding-bottom: 25px;
      border-bottom: 1px solid #f1f5f9;
  }

  .sidebar-post-item:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border-bottom: none;
      text-align: center;
  }

  .sidebar-post-title {
      font-size: 18px;
      font-weight: 700;
      text-transform: capitalize;
      font-style: normal;
      text-decoration: none;
      line-height: 26px;
  }

  .sidebar-post-title a {
      color: #0f172a;
      text-decoration: none;
      transition: color 0.2s ease;
  }

  .sidebar-post-title a:hover {
      color: #dc3545;
  }

  .sidebar-post-date {
      font-size: 13px;
      color: #0c0c0c;
      display: block;
      margin-bottom: 15px;
  }

  .sidebar-post-img {
      width: 100%;
      height: 160px;
      border-radius: 12px;
      overflow: hidden;
  }

  .sidebar-post-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
  }

  .sidebar-post-item:hover .sidebar-post-img img {
      transform: scale(1.05);
  }