* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #f4f4f4;
      color: #333;
      line-height: 1.6;
    }
  .detail_container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
      display: flex;
      flex-direction: row;
      gap: 2rem;
    }

    .blog_text {
      flex: 1;
    }

    .blog_text h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .reading_time {
      font-size: 0.9rem;
      color: gray;
      margin-bottom: 1rem;
    }

    .blog_text p {
      font-size: 1rem;
      color: #555;
    }

    .author_info {
      margin-top: 1rem;
      padding: 1rem;
      background: #fff;
      border-left: 4px solid #4a90e2;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .author_info h4 {
      margin-bottom: 0.2rem;
    }

    .blog_actions {
      margin-top: 1rem;
      display: flex;
      gap: 1rem;
      align-items: center;
      display: flex;
      justify-content:space-between;
    }

    .blog_actions button {
      background: #4a90e2;
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      
    }

    .blog_image {
      flex: 1;
    }

    .blog_image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .related_posts {
      max-width: 1200px;
      margin: 2rem auto;
      /* padding: 0 1rem; */
    }

    .related_posts h2 {
      font-size: 20px;
      margin-bottom: 1rem;
      color: #4a90e2;
      padding: 0 1rem;
    }
    .share_icons {
  margin: 1rem 0;
  display: flex;
  gap: 15px;
}

.share_icons a {
  font-size: 1.2rem;
  color: white;
  padding: 10px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
}

.share_icons .whatsapp {
  background-color: #25d366;
}

.share_icons .facebook {
  background-color: #3b5998;
}

.share_icons .linkedin {
  background-color: #0077b5;
}

.share_icons .instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.share_icons a:hover {
  transform: scale(1.1);
  opacity: 0.9;
}
.buy_button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #3565d1;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.buy_button:hover {
  background-color: #254bb0;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}



    @media (max-width: 768px) {
      .detail_container {
        flex-direction: column-reverse;
      }
    }