    * {
      box-sizing: border-box;
    }
	
	header  {
	background-color: #fff; 	
			
	border-style: solid;
    border-width: 0px 1px 3px 0px;
    border-color: #0000001C;
	padding-left: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	
	nav {
	margin-right: 20px;
	}

	nav a {
  color: #4054a0;
  text-decoration: none;
  margin-right: 20px;
  font-weight: 500;
	}
	
	nav a:hover {

  text-decoration: underline;

	}

	nav a:last-child {
	margin-right: 0;
	}

	.language-links {
	display: inline;
	}

.language-links a {
  margin-right: 0;
  margin-left: 5px;
  color: #4054a0;
}


	
    body {
      font-family: Blinker, sans-serif;
	  line-height: 20px; 
	   color: #4054a0;
	   margin: 0px;
	   
	  /* Add Protena World Map PNG as background*/
	   background-image: url('protena-world-map.png'); 
	   background-repeat: no-repeat;
	   background-position: center center;
	   background-size: cover;
	   background-attachment: fixed;
    }
	
	/* Add a transparent (80% opacity) dark blue filter over the body */
	body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* dark-blue color with 80% opacity */
  z-index: -1;
}

	.top-heading h1 {
		text-align: center;
	}
	
	h2 {
	color: #4054A0;
	}
	
	 .column-container {

      background-color: #FFFFFF;
      padding: 20px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.14), 0 2px 1px rgba(0, 0, 0, 0.12);
      margin-bottom: 20px;
    }
	
    .container {
      display: flex;
      justify-content: space-around;
      margin-top: 30px;
      margin-bottom: 0px;
    }
    .left-column, .right-column {
      width: 48%;
	   line-height: 20px; 
    }
	
	.left-column {
	padding-left: 0%;
    }
	
	.right-column {
	padding-right: 12%;
    }
	
	 .left-column, .right-column p {
   
	   line-height: 20px; 
    }
	
	
	
	.row {
      display: flex;
      justify-content: space-evenly;
    }
    .row .column-container {
      width: 32%;
    }
    .row img {
      width: 150px;
      height: auto;
      object-fit: contain;
      margin-bottom: 10px;
    }
    .row a p {
      display: block;
      text-align: left;
      margin-bottom: 20px;
	  color: #4054a0;
    }
	/* Make the page a bit more responsive on mobile and tablet by stacking the elements under each other instead of squeezing them together horizontally */
@media screen and (max-width: 767px) {
  .container {
    flex-direction: column;
  }
  .left-column, .right-column  {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  
  .left-column ul {
    list-style-type: none;
    padding-left: 5px;
}
  
 .right-column  {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .column-container {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.14), 0 2px 1px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
}
  .row {
    flex-wrap: wrap;
  }
  .row .column-container {
    width: 100%;
    margin-bottom: 20px;
  }
   .row img {
      width: 140px;
      height: auto;
      object-fit: cover;
      margin-bottom: 10px;
    }
  
}
	/* END Responsive Design Section */

	.list li i {
  margin-right: 10px;
  vertical-align: middle;
}
			
	  .list li img {
      width: 30px;
      height: auto;
      margin-right: 10px;
      vertical-align: middle;
    }
	
	 .left-column ul {
      list-style-type: none;
	  padding-left: 15px;
	  padding-right: 12%;
    }
    .left-column li {
      background-color: #ffffff;
      padding: 12px 24px;
      border-radius: 4px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      margin-bottom: 10px;
      transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    .left-column li:hover {
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transform: translateY(-3px);
    }
    .left-column a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }
    .button {
      background-color: #1F42B4;
      color: #ffffff;
      font-weight: 500;
      padding: 12px 24px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
    .button:hover {
      background-color: #e2211c;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

	
  .footer {
      text-align: center;
      padding: 10px;
      font-size: 14px;
      color: #666;
	  background-color: #ffF; 
    }