
	 h2 {
      text-align: center;
      margin-bottom: 40px;
    }


    .blog-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .blog-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      max-width: 300px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s;
    }

    .blog-card:hover {
      transform: scale(1.02);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-content {
      padding: 15px;
    }

    .blog-title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .blog-description {
      font-size: 14px;
      color: #555;
    }

    @media (max-width: 768px) {
      .blog-card {
        max-width: 100%;
      }
    }
  