.special-tab table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  .special-tab th {
    background-color: #2a5885;
    color: white;
    padding: 12px;
    text-align: left;
  }
  .special-tab td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
  }
  .special-tab tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  .special-tab td strong {
    color: #2a5885;
  }
  @media (max-width: 600px) {
    .special-tab table, tbody, tr, td {
      display: block;
      width: 100%;
    }
   .special-tab td {
      position: relative;
    }
   .special-tab td:before {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      width: 45%;
      padding-right: 10px;
      font-weight: bold;
    }
  }