.blog-detail {
    max-width: 800px;
    margin: auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #2c2c2c;
    line-height: 1.8;
  }
  
  .blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
  }
  
  .blog-image-wrapper img {
    border-radius: 12px;
    max-height: 450px;
    object-fit: cover;
    width: 100%;
  }
  
  .blog-content {
    font-size: 1.1rem;
    color: #444;
  }
  
  .btn-outline-primary {
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
  }
  
  .btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
    text-decoration: none;
  }
  