    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #EAE6E2;
      color: #333;
    }

    /* ===== NAVBAR ===== */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #D8CFC6;
      color: white;
      padding: 0.75rem 1rem;
      position: sticky;
      top: 0;	
      z-index: 1000;
      font-family: 'Arimo', sans-serif;
      font-size: 16px;
    }

    nav .logo {
      font-weight: bold;
    }

    nav ul {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }

    nav ul li {
      margin-left: 1rem;
    }

    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.2s;
    }

    nav ul li a:hover {
      color: #B8A592;
    }

    /* Hamburger icon (hidden on desktop) */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: white;
      margin: 4px 0;
      border-radius: 2px;
      transition: 0.3s;
    }

    /* ===== IMAGE ===== */
    .image-container {
      text-align: center;
      padding: 1rem;
    }

    .image-container img {
      max-width: 50%;
      height: auto;
      border-radius: 0px;
     # box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    /* ===== TABLE ===== */
    .table-container {
      width: 90%;
      margin: 1rem auto;
      background: transparent;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .table-container-nb {
      width: 90%;
      margin: 1rem auto;
      background: transparent;
	  color: white;
      border-radius: 0px;
	  font-family: 'Arimo', sans-serif;
	  font-size: 22px;
      overflow: hidden;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    }
	
	.table-container-category-title{
      width: 90%;
      margin: 1rem auto;
      background: transparent;
	  color: white;
      border-radius: 0px;
	  font-family: 'Arimo', sans-serif;
	  font-size: 19px;
	  font-weight: bold;
      overflow: hidden;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    }
	
	.table-container-category-desc{
      width: 90%;
      margin: 1rem auto;
      background: transparent;
	  color: #fff;
      border-radius: 0px;
	  font-family: 'Arimo', sans-serif;
	  font-size: 15px;
      overflow: hidden;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
    }
	
    table {
      width: 100%;
      border-collapse: collapse;
    }

    th, td {
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #D8CFC6;
      color: white;
      font-family: 'Arimo', sans-serif;
      font-size: 16px;
      padding: 0.75rem;
    }

    td {
      font-family: Arial, sans-serif;
      font-size: 12px;
      padding: 1.6rem 1.75rem;
    }

    tr:nth-child(even) {
      background-color: #white;
    }

    /* ===== RESPONSIVE STYLES ===== */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #D8CFC6;
      }

      nav ul.active {
        display: flex;
      }

      nav ul li {
        text-align: center;
        margin: 0.5rem 0;
      }
    }

    /* Table → Card layout */
    @media (max-width: 700px) {
      table, thead, tbody, th, td, tr {
        display: block;
      }

      thead {
        display: none;
      }

      tr {
        margin-bottom: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        padding: 0.5rem;
      }

      td {
        border: none;
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 1rem;
      }

      td::before {
        content: attr(data-label);
        font-weight: bold;
        color: #D8CFC6;
        font-family: 'Arimo', sans-serif;
        font-size: 14px;
      }
    }