*, *::before, *::after {
	box-sizing: border-box;
}

body {
    margin:0;
    padding:0;
	font-family: Tahoma, "PT Sans", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

html, body {
	height: 100%;
}

header {
    background-color: #f0f0f0;
    padding: 10px 0;
    border-radius: 5px;
    margin-bottom: 20px;
	position: sticky;
	top: 0;
	z-index: 100;
}

nav {
	margin: 0 auto;
    max-width: 940px;
}

nav ul {
	display: flex;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
    align-items: center;
	justify-content: space-between;
	flex-direction: row;
}

nav a {
	width: 100%;
    text-align: center;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
nav a.active {
    background-color: #007bff;
    color: white;
}

nav a:hover {
    color: #f0f0f0;
    background-color: #333;
}

main {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 1rem;
	flex: 1;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: black;
    color: white;
}

.card {
	background-color: #f0f0f0;
	border-radius: 8px;
	padding: 20px;
    max-width: 940px; /* Adjust as needed */
	margin: 0 auto 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card p {
	line-height: 2;
}

@media (max-width: 768px) {
    .card {
        max-width: 100%;
        padding: 0 15px;
    }
}

.homepage-hero {
	display: flex;
	align-items: center; /* Vertically center */
	gap: 20px; /* Space between image and text */
    background-color: #007bff !important;
	color: white;
    height: 150px;
}

.homepage-hero img {
	flex-shrink: 0; /* Prevent image from shrinking */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    min-width: 120px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.card-white {
	background-color: white;
	padding:0;
}

.card-split {
	display: flex;
	gap: 20px;
}

.card-split > .subcard {
	flex: 1;
	padding: 20px;
	min-width: 0;
	background-color: #f0f0f0;
}

.social-links a {
	display: inline-block;
	background-color: #007bff;
	color: white;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

.social-links a:hover {
	background-color: #0056b3;
}

