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

body {
	font-family: Arial, sans-serif;
	<!--background-color: #f7f7f7; font-family: 'Roboto', sans-serif;-->
	background: linear-gradient(to right, #0f172a, #1e3a8a);
}

header {
	background-color: #4caf50;
	color: white;
	padding: 1rem;
	position: sticky;
	top: 0;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

nav {
	display: flex;
	gap: 1rem;
}

nav a {
	color: white;
	text-decoration: none;
}

nav a:hover {
	text-decoration: underline;
}

/* Hamburger menu (for mobile) */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 4px;
	cursor: pointer;
}

.hamburger span {
	background-color: white;
	height: 4px;
	width: 30px;
	border-radius: 2px;
}

/* Hero section */
.hero {
	background-image: url('../images/bc.webp');
	background-size: cover;
	background-position: center;
	padding: 5rem 2rem;
	color: white;
	text-align: center;
	position: relative;
}

.hero h1 {
	font-size: 3rem;
}

.hero p {
	font-size: 1.25rem;
	margin: 1rem 0;
}

.hero button {
	padding: 0.75rem 1.5rem;
	background-color: white;
	color: #4caf50;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
}

.hero button:hover {
	background-color: #f1f1f1;
}

/* Main content layout */
.container {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	margin: 2rem 0;
}
aside {
	width:250px;
	background-color: white;
	padding: 1.5rem;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
	margin-right: -0.4rem;
	position: sticky;
	top: 80px; /* Adjust this value if necessary */
	height: fit-content;
}
aside h2 {
	font-size: 1.25rem;
	color: #4caf50;
	margin-bottom: 1rem;
}

aside ul {
	list-style: none;
}

aside ul li {
	margin: 0.75rem 0;
}

aside ul li a {
	color: #333;
	text-decoration: none;
}

aside ul li a:hover {
	color: #4caf50;
}

.features {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	justify-content: center;
}

.feature {
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 1.5rem;
	flex: 1 1 calc(33.333% - 2rem);
	min-width: 280px;
	text-align: center;
	margin: -0.4rem;
}

.feature img {
	max-width: 100%;
	height: auto;
}

.feature h3 {
	font-size: 1.25rem;
	margin: 1rem 0 0.5rem;
}

.feature p {
	color: #666;
	font-size: 0.9rem;
}

.feature button {
	background-color: #4caf50;
	color: white;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	margin-top: 0.5rem;
}

/* Footer */
.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 2rem;
	background-color: #333;
	color: white;
}

.footer-links, .footer-contact {
	flex: 1;
	text-align: left;
}

.footer-app {
	flex: 1;
	text-align: center;
}

.footer-links h3, .footer-contact h3, .footer-app h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

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

.footer-links ul li {
	margin-bottom: 8px;
}

.footer-links ul li a {
	color: #81c784;
	text-decoration: none;
}

.footer-links ul li a:hover {
	text-decoration: underline;
}

.footer-contact p {
	margin: 5px 0;
	color: #ccc;
}

.footer-app img {
	width: 150px;
	margin-top: 10px;
}

footer p {
	background-color: #222;
	text-align: center;
	padding: 1rem;
	margin: 0;
	color: white;
}

@media (max-width: 768px) {
	.footer-container {
		flex-direction: column;
		text-align: center;
	}

	.footer-contact {
		margin-top: 1rem;
	}

	.footer-app {
		margin-top: 1rem;
	}
}	

/* Mobile styles */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	nav {
		display: none;
		flex-direction: column;
		width: 100%;
		background-color: #4caf50;
		position: absolute;
		top: 60px;
		left: 0;
		padding: 1rem;
	}

	nav.active {
		display: flex;
	}

	nav a {
		color: white;
		padding: 1rem;
		text-align: center;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}

	header .logo {
		font-size: 1.25rem;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.hero button {
		padding: 0.5rem 1rem;
		font-size: 1rem;
	}

	.container {
		flex-direction: column;
		padding: 7px;
	}

	.features {
		flex-direction: column;
		gap: 2rem;
	}

	.feature {
		flex: 1 1 100%;
	}

	aside {
		width: 100%;
		padding: 1rem;
		margin-bottom: 1rem;
		box-shadow: none;
		order: 1; /* Sidebar will appear below the content */
		margin-right: 0; /* Remove right margin in mobile view */
	}
}

/*InfoPage class css here */
.InfoPage {
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 2.5rem;
	flex: 1 1 calc(33.333% - 2rem);
	min-width: 280px;
	margin: -0.4rem;
}

.InfoPage h1,h2,h3 {
	margin: 1rem 0 0.5rem;
	text-align: left;
	margin-bottom: 20px;
}

.InfoPage h1,
.InfoPage h2,
.InfoPage h3 {
	color: #004aad;
}

.InfoPage p {
	color: black;
}