
.blog-page{
    background-color: rgb(216, 231, 222);
    
}


.blog-heading{
  text-align: center;
  padding: 5%;


}


.blog-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15%;
    padding-right:15%;
    padding-top: 5%;
    padding-bottom: 5%;
  }
  
  .blog-post {
    background-color: rgba(255, 255, 255, 0.499);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .post-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .post-content {
    padding: 20px;
  }
  
  .post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .post-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
  }
  
  .post-excerpt {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .read-more {
    display: inline-block;
    font-weight: bold;
    color: #cacac4;
    text-transform: uppercase;
  }
  
  .read-more:hover {
    text-decoration: underline;
  }

   /* Style for the container */
   .content-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: justify;  /* Justifies the text */
    margin: 20px;
    line-height: 1.6;
  }

  /* Optional styling for the headings */
  h1 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  p {
    margin-bottom: 15px;
  }

  /* Container for the SEO content */
  .seo-container {
    text-align: justify;  /* Justifies the text */
    margin: 20px;
    line-height: 1.6;
  }
  