
  /* Blog Listing Styles */
  .blog-listing {
    max-width: 1000px;
    margin: 90px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  .page-title {
    font-size: 2.5rem;
    text-align: center;
    color: #333333;
    margin-bottom: 40px;
    border-bottom: 2px solid #42A5F5;
    padding-bottom: 10px;
  }
  
  .blog-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .blog-summary {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
  
  .blog-thumbnail {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .blog-content h2 {
    font-size: 1.5rem;
    margin: 0;
    color: #333333;
  }
  
  .blog-content h2 a {
    text-decoration: none;
    color: #42A5F5;
  }
  
  .blog-content h2 a:hover {
    text-decoration: underline;
  }
  
  .blog-content p {
    font-size: 1rem;
    color: #666666;
    margin: 10px 0;
  }
  
  .read-more {
    display: inline-block;
    color: #42A5F5;
    font-weight: bold;
    text-decoration: none;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }
  
  
    /* Blog Detail Styling */
  
    breadcrumb {
      margin-bottom: 20px;
      font-size: 0.9rem;
    }
    
    .breadcrumb a {
      color: #42A5F5;
      text-decoration: none;
      font-weight: bold;
    }
    
    .breadcrumb a:hover {
      text-decoration: underline;
    }
  
    .blog-detail {
      max-width: 1000px;
      margin: 20px auto;
      padding: 20px;
      background-color: #FFFFFF;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
    }
    
    .blog-post {
      margin-bottom: 40px;
    }
    
    .blog-title {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #333333;
    }
    
    .blog-meta {
      font-size: 0.9rem;
      color: #666666;
      margin-bottom: 20px;
    }
    
    .blog-content p {
      line-height: 1.8;
      margin-bottom: 20px;
      color: #333333;
    }
    
    .blog-content img {
      max-width: 100%;
      height: auto;
      margin: 20px 0;
      border-radius: 5px;
    }