           :root {
               --dp-green: #2b4a45;
           }

           html {
               scroll-behavior: smooth;
           }

           body {
               font-family: 'Montserrat', sans-serif;
               color: var(--dp-green);
               max-width: 1000px;
               margin: 0 auto;
               padding: 20px;
           }

           .content-padding {
               padding: 30px;
           }

           .page-header {
               background-color: var(--dp-green);
               border-radius: 8px;
            }
            
            .page-header img {
                width: 120px;
                margin-left: 10px;
            }

           h1 {
               color: white;
    
           }

           h2 {
               margin-top: 30px;
               padding-bottom: 5px;
           }

           .checkbox-container {
               width: 50%;
           }

           label {
               display: block;
               margin: 8px 0;
           }


           #result {
               display: flex;
               flex-direction: row;
               align-items: center;
               justify-content: center;
               margin-top: 20px;
               opacity: 1;
               transition: opacity 0.5s ease;
           }

           #result h3 {
               font-family: "Press Start 2P", system-ui;
           }

           #result img {
               margin: 0 30px;
               width: 180px;
           }

           .result-visible {
               border: 6px solid black;
               margin: 0 30px;
               padding: 5px 15px 40px 15px;
               border-radius: 8px;
               box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.5);
           }

           /* DYNAMIC CLASSES FOR RESULTS TITLE COLOURS*/
           .red {
               color: rgb(255, 15, 15);
           }

           .orange {
               color: rgb(245, 135, 9);
           }

           .yellow {
               color: rgb(255, 227, 66);
           }

           .green {
               color: rgb(28, 228, 28);
           }

           .hidden {
               display: none;
           }

           .visible {
               display: block;
           }

           .flex-row {
               display: flex;
               flex-direction: row;
               align-items: center;
           }

           input {
               padding: 8px;
               border: 0.5px solid var(--dp-green);
               border-radius: 8px;
               font-family: 'Montserrat', sans-serif;
           }

           button {
               padding: 5px 10px;
               border: none;
               border-radius: 8px;
               font-size: 1rem;
               font-family: 'Montserrat', sans-serif;
               font-weight: bold;
               background-color: var(--dp-green);
               color: white;
               box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
           }

           button:hover {
               cursor: pointer;
               background-color: rgb(43, 74, 69, 0.7);
           }

           table {
               width: 100%;
               border-collapse: collapse;
               margin: 1em 0;
               font-family: 'Montserrat', sans-serif;
               box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
           }

           th,
           td {
               padding: 12px 16px;
               text-align: left;
               border-bottom: 1px solid #ddd;
           }

           thead {
               background-color: #f5f5f5;
           }

           tbody tr:nth-child(even) {
               background-color: #fafafa;
           }

           th {
               font-weight: 600;
               color: var(--dp-green);
           }

           .explananation-li a {
               text-decoration: none;
               color: var(--dp-green);
           }

           .explananation-li a:hover {
               text-decoration: underline;
           }

           hr {
               margin: 60px 0;
           }


           @media (max-width: 850px) {
               #result {
                   flex-direction: column;
                   text-align: center;
               }

               #result img {
                margin-top: 40px;
                width: 120px;
               }

               .page-header img {
                width: 100px;
            }
           }

           @media (max-width: 480px) {
               body {
                   padding: 1rem;
                   font-size: 16px;
               }

               .content-padding {
                   padding: 20px;
               }

               .page-header {
                   text-align: center;
               }

               .page-header img {
                width: 80px;
               }

               h2 {
                   margin: 15px 0;
                   padding: 0;
               }

               input[type="text"] {
                   width: 90%;
                   margin-bottom: 20px;
                   ;
               }

               .flex-row {
                   flex-direction: column;
               }

               .checkbox-container {
                   width: 100%;
               }

               label {
                   display: flex;
                   flex-direction: row;
                   align-items: start;
                   justify-content: left;
               }

               .result-visible {
                   margin: 0 20px;
               }

               #result img {
                margin: 30px 0 0 0;
                width: 120px;
               }

               .table-container {
                   overflow-x: auto;
                   -webkit-overflow-scrolling: touch;
                   /* smooth scrolling on iOS */
               }

               .table-container table {
                   width: 100%;
                   min-width: 600px;
                   /* or however wide your table needs to be */
               }

               .logo-container {
                   display: flex;
                   justify-content: center;
                   align-items: center;
               }

               .logo-container img {
                   height: auto;
               }

               hr {
                   margin: 30px 0;
               }


           }