body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding: 20px 0;
  }
  


/* BLOG LAYOUT */
.blog {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  
  .blog-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: #0d63a5;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  /* GRID LAYOUT */
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr 350px; /* text + image */
    gap: 30px;
    margin-bottom: 40px;
    align-items: start;
  }

  .blog-grid-2 {
    display: grid;
    grid-template-columns: 350px 350px; /* text + image */
    gap: 80px;
    align-items: center;
    margin: 0 80px;
    margin-bottom: 40px;
   
  }
  
  .blog-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    background: #f0f0f0;
  }
  
  /* TEXT STYLING */
  .blog-section h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0d63a5;
    margin-bottom: 15px;
  }
  
  .blog-text h3 {
    
    margin-bottom: 8px;
    font-size: 18px;
    color: #464646;
  }
  
  .blog p,
  .blog li {
    color: #464646;
    font-size: 15px;
    line-height: 1.6;
  }
  

/* INDENT LIST ITEMS */
.blog ul,
.blog ol {
  padding-left: 28px;      /* increased indentation */
  margin-bottom: 18px;
}

.blog li {
  margin-bottom: 6px;
  line-height: 1.6;
}


  .blog-section {
    margin-top: 50px;
  }
  
 
 /* Challenges Table */
 .table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
  }
  
  .challenge-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
  }
  
  .challenge-table th {
    background: #0573c1;
    color: #fff;
    padding: 10px;
    text-align: left;
  }
  
  .challenge-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
  }

   /* Back Button */
   .back-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 10px 18px;
    background: #0573c1;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
  }
  
  .back-btn:hover {
    background: #045a97;
  }
  
  
  /* MOBILE RESPONSIVE */
  @media (max-width: 768px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
    .blog-grid-2 {
        grid-template-columns: 1fr;
      }
  
    .blog-img {
      max-width: 100%;
    }
  }
  