@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
	font-family: Arial, sans-serif;
	margin: 0;
	background: #fff;
	color: #333;
}

header {
	display: flex;
	align-items: center;
	justify-content: center;
}

nav.navbar {
	background-color: #1f5081;
	padding: 0;
}

nav.navbar ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

nav.navbar ul li {
	margin: 0;
}

nav.navbar ul li a {
	display: block;
	padding: 14px 18px;
	color: white;
	text-decoration: none;
	font-size: 16px;
	transition: border-bottom 0.3s, background-color 0.3s;
	border-bottom: 3px solid transparent;
}

nav.navbar ul li a:hover,
nav.navbar ul li.active a {
	border-bottom: 3px solid white;
}

.container {
	display: flex;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	gap: 20px;
	justify-content: space-between;
}

.sidebar-heading {
	background-color: #2271b1;
	color: white;
	padding: 12px 16px;
	font-size: 20px;
	font-weight: bold;
	border-radius: 2px;
	margin-bottom: 15px;
}

.recent-posts {
	list-style: none;
	padding: 0;
	margin: 0;
}

.recent-posts li {
	margin-bottom: 12px;
}

.recent-posts li a {
	display: block;
	background-color: #161b22;
	color: #ffffff;
	padding: 12px 14px;
	text-decoration: none;
	font-size: 16px;
	border-radius: 12px;
	transition: background-color 0.3s ease;
}

.recent-posts li a:hover {
	background-color: #2c3e50;
}

.main-content {
	/* flex: 1 1 75%; */
	width: 75%;
	padding: 10px;
}
.sidebar {
	width: 20%;
}

h1,
h2 {
	color: #003366;
}

.image-banner {
	width: 100%;
	margin: 20px 0;
	display: flex;
	justify-content: center;
}

.image-banner img {
	max-width: 700px;
	height: fit-content;
	border-radius: 8px;
}

@media (max-width: 1100px) {
	.image-banner img {
		max-width: 100%;
		height: fit-content;
		border-radius: 8px;
	}
}
@media (max-width: 750px) {
	.container {
		flex-direction: column;
		justify-content: center;
	}
	.main-content {
		width: 100%;
		padding: 0px;
	}
	.sidebar {
		width: 100%;
	}
	.navbar {
		display: none;
	}
}
.card {
	background-color: #f4faff;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 15px;
	margin: 10px 0;
	text-align: center;
}

.card p {
	font-size: 16px;
	line-height: 1.5;
}

.btn {
	background-color: red;
	color: white;
	padding: 8px 16px;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	margin-top: 10px;
	display: inline-block;
}

footer {
	background-color: #003366;
	color: white;
	padding: 15px;
	text-align: center;
	margin-top: 20px;
}

.blue-heading {
	background-color: #0055aa;
	color: white;
	padding: 10px;
	border-radius: 4px;
	margin-top: 20px;
}

ul {
	padding-left: 20px;
}

ul li {
	margin-bottom: 8px;
}

.text-small {
	font-size: 14px;
	color: #666;
}
.logo-container {
	width: 200px;
	height: 100px;
	overflow: hidden;
}
.logo-container img {
	width: 100%;
	height: 100%;
}

p {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	line-height: 1.6;
}

.topnav {
	overflow: hidden;
	background-color: #1f5081;
	position: relative;
	display: none;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
	display: none;
}

/* Style navigation menu links */
.topnav a {
	color: white;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
	background: #fff;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	color: #000;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
	background-color: #ddd;
	color: black;
}

/* Style the active link (or home/logo) */
.active {
	background-color: #1f5081;
	color: white;
}
@media (max-width: 750px) {
	.topnav {
		display: block;
	}
}
.linking {
	color: #1f5081;
	text-decoration: none;
}
