 * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #2c2c2c;
      line-height: 1.6;
    }

    .section-title {
      text-align: center;
      font-size: 32px;
      font-weight: 600;
      margin-top: 60px;
      margin-bottom: 40px;
      color: #222;
    }

    .blog-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto 80px;
      padding: 0 20px;
    }

    .blog-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      color: inherit;
      display: flex;
      flex-direction: column;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .blog-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #0077b5;
    }

    .blog-summary {
      font-size: 15px;
      color: #555;
      flex-grow: 1;
    }
    
     .blog-tags {
      margin-top: 8px;
    }

    .blog-tags span {
      display: inline-block;
      background-color: #e0f7fa;
      color: #007b8c;
      font-size: 13px;
      padding: 5px 10px;
      border-radius: 20px;
      margin-right: 10px;
      margin-bottom: 6px;
    }

    footer {
      background-color: #fafafa;
      border-top: 1px solid #eaeaea;
      padding: 40px 20px;
      text-align: center;
      font-size: 14px;
      color: #888;
    }

    footer a {
      color: #0077b5;
      text-decoration: none;
      font-weight: 500;
    }

    @media (max-width: 600px) {
      .section-title {
        font-size: 24px;
      }

      .blog-card img {
        height: 160px;
      }
    }