		body {
		 font-family: Tahoma;
		 font-size: 13px;
		 background: #FFFFFF;
		}

		#main_title {
		 font-weight:bold;
		 text-align:center;
		 font-size: 25px;
		 color:#BEDBD6;
		}

		#sub_title {
		 font-weight:bold;
		 text-align:center;
		 font-size: 18px;
		 color:#BEDBD6;
		}

		#myBtn {
		display: none; /* Hidden by default */
		position: fixed; /* Fixed-sticky position */
		bottom: 20px; /* Place the button at the bottom of the page */
		right: 30px; /* Place the button 30px from the right */
		z-index: 99; /* Make sure it does not overlap */
		font-size: 18px; 
		border: none; /* Remove borders */
		outline: none; /* Remove outline */
		background-color: red; /* Set a background color */
		color: white; /* Text color */
		cursor: pointer; /* Add a mouse pointer on hover */
		padding: 15px;  /* Some padding */
		border-radius: 4px; /* Rounded corners */
		}

		#myBtn:hover {
		background-color: #555;
		}
		
		figure {
		  border: 1px #cccccc solid;
		  padding: 4px;
		  margin: auto;
		  width:10%;
		   margin: 10px; /* Adds some margin around each figure */
		}

		figcaption {
		  background-color: white;
		  color: black;
		  padding: 2px;
		  text-align: center;
		  font-size: 18px;
		}
		
		.list-inline {
			padding-left: 0;
			margin-left: -5px;
			list-style: none;
		}
		.list-inline > li {
			display: inline-block;
			padding-right: 5px;
			padding-left: 5px;
		}
		.text-center {
			text-align: center;
		}
		/*	Increase the image size on hover - with slight displacement to the left*/
		.thumbnail_1 { 
			top:-50px; 
			left:-35px; 
			display:block; 
			z-index:999; 
			cursor: zoom-in;
			-webkit-transition-property: all; 
			-webkit-transition-duration: 0.3s; 
			-webkit-transition-timing-function: ease;
			-webkit-border-radius: 10px 10px 0px 0px;
			 border-radius: 100px;
		} 

		/*change the number below to scale to the appropriate size*/ 
		.thumbnail_1:hover { 
			transform: scale(3) translateX(-25px) translateY(25px); //negative value moves the image to left
		}
												
		/*	Increase the image size on hover with slight displacement to the right*/
		.thumbnail_2 { 
			top:-50px; 
			left:-35px; 
			display:block; 
			z-index:999; 
			cursor: zoom-in; 
			-webkit-transition-property: all; 
			-webkit-transition-duration: 0.3s; 
			-webkit-transition-timing-function: ease;
			-webkit-border-radius: 10px 10px 0px 0px;
			 border-radius: 100px;							
		} 

		/*change the number below to scale to the appropriate size*/ 
		.thumbnail_2:hover { 
			transform: scale(3) translateX(50px) translateY(25px); //negative value moves the image to left
		}
		
		/* Header container */
		#myHeader {
		  display: flex; /* Use flexbox for horizontal alignment */
		  align-items: center; /* Vertically align items */
		  justify-content: center; /* space-between: adds spacing between text and image */
		}

		/* Text container for titles and subtitle */
		#text-container {
		  display: flex;
		  flex-direction: column; /* Stack title and subtitle vertically */
		}
		
		/* Image styling */
		#header_image {
		  height: 50px; /* Adjust size as needed */
		  width: auto;
		  margin-left: 30px; /* Add space between text and image */
		}
		
					
		/* Fixed header */
		#fixed-header {
		  position: fixed;
		  top: 0;
		  width: 100%;
		  background-color: #046688;
		  color: white;
		  text-align: center;
		  padding: 10px;
		  z-index: 1000;
		  transition: background-color 0.3s, content 0.3s;
		}

		/* Default header style */
		.default-header {
		  background-color: #046688;
		}

		/* Section styles */
		.page-section {
		  /*height: 100vh; /* Full viewport height */
		  padding-top: 10px; /* Prevent content overlap with header */
		}
				
		.empty-cell {
			background-color: transparent;
			display: block;
		}
		
		/* Flexbox for centering the last row - NOT responsive in small screens */
        .last-row {
            display: flex;
            justify-content: center;
			gap: 20px;
            grid-column: 1 / -1; /* Span across all columns */
        }

		@media (max-width: 768px) {
			.image-grid {
				grid-template-columns: repeat(3, 1fr); /* Reduce to 3 columns */
			}
		}

		@media (max-width: 480px) {
			.image-grid {
				grid-template-columns: repeat(2, 1fr); /* Reduce to 2 columns */
				padding: 10px; /* Adjust padding for smaller screens */
			}
		}
		.centered-link {
			display: flex; /* Use flexbox to center the image within the link */
			justify-content: center; /* Center the image horizontally */
			align-items: center; /* Center the image vertically */
			width: 100px; /* Set an appropriate width for the link area*/
			height: 60px; /* Set an appropriate height for the link area */
			text-decoration: none; /* Remove underline */
			border-radius: 25px; /* Apply border radius here */
			transition: background-color 0.3s; /* Smooth transition for background color */
		}

		.centered-link:hover {
			background-color: #e2ecf9; /* Hover background color */
		}
	
