    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px auto;
      font-family: Arial, sans-serif;
    }
    h2{
      color: #0036BC;
    }
    th, td {
      padding: 15px;
      text-align: center;
      border: 1px solid #ccc;
      vertical-align: top;
    }
    th {
      background-color: #f4f4f4;
      font-weight: bold;
      font-size: 1.2em;
      color: #0036BC;
    }
    .image-cell img {
      max-width: 100%;
      height: auto;
      border: 1px solid #ddd;
    }
    .link-cell a {
      display: block;
      padding: 10px;
      text-decoration: none;
      color: #0066cc;
      font-weight: bold;
      background-color: #e6f3ff;
      border: 1px solid #99ccff;
      border-radius: 4px;
      transition: background-color 0.3s;
    }
    .link-cell a:hover {
      background-color: #cce5ff;
    }
    @media (max-width: 600px) {
      table, th, td {
        display: block;
      }
      th, td {
        padding: 10px;
      }
      .image-cell img,
      .link-cell a {
        max-width: 100%;
      }
    }