footer h5 {
	font-size:var(--font-size);
	font-weight:bold;
}

footer .container {
	padding:1.5rem;
}	

.footer-wrapper {
	padding:var(--padding);
	border-radius:var(--border-radius);
}

.footer-nav-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;  /* Align the content to the right */
}

.footer-nav-wrapper h5 {
	text-align: right;  /* Align the title to the right */
	margin-bottom: 0.5rem;  /* Space between title and list */
	width: 100%;  /* Make sure the title takes up the full width */
}

ul.footer-nav {
	list-style-type: none;
	padding-top: 0.5rem;
	margin: 0;
	width: 100%;  /* Ensure the list takes up the full width to align with the title */
}

ul.footer-nav li {
	padding-bottom: 0.5rem;
	text-align: right;  /* Align list items to the right */
}

