* {
	font-family: Arial, sans-serif;
}

body {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column; /* Stack header, main, and footer vertically */
	min-height: 100vh; /* Ensure the body takes the full viewport height */
	background-color: #f4f4f9; /* Light background color */
	color: #333; /* Darker text for better contrast */
}

header {
	text-align: center;
	padding: 20px;
	background-color: #0056b3; /* Updated blue for better match with images */
	color: #f4f4f9; /* Light text for better contrast */
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

main {
	flex: 1; /* Allow main to take up remaining space */
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background: #fff; /* White background for content */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	border-radius: 10px; /* Rounded corners */
	margin: 20px; /* Add spacing around the main content */
}

footer {
	text-align: center;
	padding: 10px;
	background-color: #0056b3; /* Updated blue for better match with images */
	color: #f4f4f9; /* Light text for better contrast */
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
	font-size: 0.9rem; /* Slightly smaller text */
}

footer a {
	color: #1abc9c; /* Green for the link */
	text-decoration: none;
	transition: color 0.3s ease; /* Smooth transition for hover */
}

footer a:hover {
	color: #16a085; /* Darker green on hover */
}

h1 {
	text-align: center;
	margin-top: 0;
	font-size: 2rem;
	color: #ffffff; /* Darker blue for the title */
}

h2 {
	text-align: center;
	margin-top: 10px;
	font-size: 1.5rem;
	color: #ffffff; /* Slightly lighter blue */
}

p {
	text-align: center;
	margin-top: 10px;
	font-size: 1rem;
	color: #ffffff; /* Neutral gray for text */
}

section {
	display: flex;
	align-items: flex-start; /* Align items at the top */
	margin-top: 20px;
	padding: 10px;
	background: #f9f9f9; /* Light gray background for sections */
	border: 1px solid #ddd; /* Subtle border */
	border-radius: 8px; /* Rounded corners */
	width: 100%; /* Full width */
	max-width: 600px; /* Limit section width */
}

section img {
	width: 100px;
	height: 100px;
	margin-right: 20px;
	border-radius: 50%; /* Circular images */
	border: 2px solid #ddd; /* Border around images */
}

section .content {
	display: flex;
	flex-direction: column;
}

section h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
	color: #55556f; /* Darker blue for section titles */
}

section div {
	margin-bottom: 10px;
}

section div span {
	font-weight: bold;
	color: #555; /* Neutral gray for labels */
}

section div a {
	text-decoration: none;
	color: #3498db; /* Blue for links */
	transition: color 0.3s ease; /* Smooth transition for hover */
}

section div a:hover {
	color: #1abc9c; /* Green on hover */
}

@media (max-width: 768px) {
	body {
		padding: 10px; /* Add padding for smaller screens */
	}

	main {
		margin: 10px; /* Reduce margin for smaller screens */
		padding: 15px; /* Adjust padding for better fit */
	}

	section {
		flex-direction: column; /* Stack content vertically */
		align-items: center; /* Center align items */
		text-align: center; /* Center text for better readability */
	}

	section img {
		margin: 0 0 15px 0; /* Add spacing below the image */
	}

	section .content {
		align-items: center; /* Center align content */
	}

	footer {
		font-size: 0.8rem; /* Slightly smaller text for footer */
	}
}
