
<style>
  /* Govt Sathi Scoped CSS */
  .govt-sathi {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    margin: 0;
    padding: 20px;
  }

  .govt-sathi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .govt-sathi h1 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: #333;
  }

  .govt-sathi h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: #444;
    border-left: 5px solid #2196f3;
    padding-left: 10px;
  }

  .govt-sathi .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px; /* প্রতিটি section শেষে gap */
  }

  .govt-sathi .tool-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    cursor: pointer;
  }

  .govt-sathi .tool-card:hover {
    transform: translateY(-5px);
  }

  .govt-sathi .tool-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .govt-sathi .tool-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
  }

  .govt-sathi a {
    text-decoration: none;
    color: inherit;
  }
</style>