body {
      font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
      margin: 0;
      padding: 0px;
      background: #f2f2f2;
      colour: #333;
    }
    h2, h3 {
      font-family: 'Georgia', serif;
      colour: #222;
    }
    h2 {
      margin-bottom: 20px;
    }
    p {
      line-height: 1.6;
      margin-bottom: 15px;
    }
    a {
      colour: #007BFF;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    /* Unique table styles */
    table {
      border-collapse: collapse;
      width: 100%;
      margin: 20px 0;
      background: #fff;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      overflow: hidden;
    }
    table thead {
      background: linear-gradient(135deg, #4CAF50, #8BC34A);
      colour: #fff;
    }
    table thead th {
      padding: 12px;
      font-size: 16px;
      text-align: left;
      border: none;
    }
    table tbody tr {
      border-bottom: 1px solid #ddd;
      transition: background-colour 0.3s;
    }
    table tbody tr:hover {
      background-colour: #f9f9f9;
    }
    table tbody td {
      padding: 12px;
      font-size: 14px;
      border: none;
    }
    table tbody tr:last-child {
      border-bottom: none;
    }
    /* Unique list styles */
    ul {
      list-style: square;
      margin-left: 20px;
    }
    li {
      margin-bottom: 8px;
    }
    /* Unique gallery styles */
    .unique-gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }
    .unique-gallery img {
      max-width: 120px;
      border: 2px solid #ddd;
      border-radius: 4px;
      transition: transform 0.3s, border-colour 0.3s;
    }
    .unique-gallery img:hover {
      transform: scale(1.05);
      border-colour: #4CAF50;
    }
    /* Modal styles */
    .unique-modal {
      display: none;
      position: fixed;
      z-index: 1000;
      padding-top: 60px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-colour: rgba(0, 0, 0, 0.9);
    }
    .unique-modal img {
      margin: auto;
      display: block;
      max-width: 80%;
      max-height: 80%;
    }
    .close-modal {
      position: absolute;
      top: 15px;
      right: 35px;
      colour: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }
    .prev, .next {
      cursor: pointer;
      position: absolute;
      top: 50%;
      padding: 16px;
      margin-top: -50px;
      colour: #fff;
      font-weight: bold;
      font-size: 40px;
      user-select: none;
    }
    .prev {
      left: 0;
    }
    .next {
      right: 0;
    }