        /* Fixed menu bar styling */
        .menu-bar {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #333;
            color: white;
            padding: 15px 0;
            display: flex;
            justify-content: center;
            z-index: 1000; /* Ensures menu stays on top */
        }

        /* Menu links styling */
        .menu-bar a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-size: 1em;
            transition: color 0.3s;
        }

        .menu-bar a:hover {
            color: #f0a500;
        }
        
	.footer-section {
			justify-content: space-between;
			padding: 40px;
			height: 50vh; /* Adjustable height */
			background-color: #D3D3D3; /* Matches background */
			display: inline-block;
			display: flex;
			width: 100%;
			height: 80%;
			border: 1px solid #444;
			border-radius: 8px;
			overflow: hidden;
		}

	.column {
			flex: 1;
			padding: 20px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			text-align: center;
		}
		
		
    .column h2 {
		  margin-bottom: 20px;
		  font-size: 4vh;
		  color: black; /* Gold heading */
		  font-family: "Lucida Console", "Courier New", monospace;
    }

    .column a {
		  color: white;
		  text-decoration: none;
		  font-size: 18px;
		  margin: 10px 0;
		  height: 200%;
		  display: inline-block;
		  transition: color 0.3s;
		  max-width: 10vh;
		max-height: 300%;
    }

    .column a:hover {
		color: #FFD700; /* Highlight on hover */
    }

    .column img {
		width: 10vh;
		height: 10vh;
    }



    .right {
      right: 1vh;
    }
		 /*Image styling */
	#ftr_img {
		position: relative;
		width: 100vh; 
		height: 40vh;
		overflow: hidden;
		border-radius: 2vh;
		left: 1vh;
		margin: 2vh;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: white;
		display: flex;
		overflow: hidden;
	}
	

	.social-links {
		position: relative;
		bottom: 2vh;
	}
