/* Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Header Styling */
.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
	padding: 15px 40px;
	color: white;
}

/* Logo + Title */
/* Example KSC Guide Jobs Portal */
.logo-title {
	display: flex;
	align-items: center;
	color: black;
}

.logo {
	width: 50px;
	height: 50px;
	margin-right: 15px;
}

/* Navigation Menu */
/* Navigation Menu - Related Data Menu List like KSPC Home etc*/
.nav-menu a {
	color: rgb(20, 20, 20);
	text-decoration: none;
	margin-left: 20px;
	font-weight: 500;
}

.nav-menu a:hover {
	text-decoration: underline;
	color: #b6ecf6;
}

/* Body Content */
.content {
	padding: 40px;
	min-height: 400px;
}

/* Button Section */
.button-section {
	text-align: center;
	padding: 20px;
	background-color: #f3f4f6;
}

.button-section button {
	padding: 10px 20px;
	margin: 10px;
	border: none;
	background-color: #b5e7bf;
	color: white;
	cursor: pointer;
	border-radius: 5px;
}

.button-section button:hover {
	background-color: #25eb49;
}



/* -------------------------------------- Updated Version Footer Section -------------------------- */

.footer-section {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    color: #222;
    padding: 40px 60px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer-column h3 {
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #222;
    text-decoration: none;
}

.footer-column a:hover {
    color: #b77a5b;
}

.social-icons i {
    margin-right: 8px;
}

.social-icons a {
	color: #fff;
	text-decoration: none;
	margin-right: 15px;
}	
.social-icons a:hover {
	color: #f4b400;
}
