.button {
	background-color: #0073e6;
/* Change to your brand color */
	color: #ffffff;
	padding: 12px 20px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color .3s ease;
}

.button:hover {
	background-color: #005bb5;
/* Darker shade on hover */
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 15px;
/* Space between icons */
}

.social-icons a {
	color: #0073e6;
/* Change to your brand color */
	font-size: 24px;
/* Adjust size as needed */
	transition: transform .3s ease;
}

.social-icons a:hover {
	transform: scale(1.1);
/* Slightly enlarge on hover */
}

h2, h3 {
	color: #333333;
/* Darker color for better readability */
	font-family: 'Arial', sans-serif;
/* Change to your preferred font */
	border-bottom: 2px solid #0073e6;
/* Underline effect */
	padding-bottom: 5px;
}

blockquote {
	border-left: 4px solid #0073e6;
/* Left border for emphasis */
	padding-left: 20px;
	color: #555555;
/* Lighter color for the text */
	font-style: italic;
	margin: 20px 0;
}

body {
	line-height: 1.6;
/* Improve line spacing */
	font-size: 16px;
/* Base font size */
	color: #444444;
/* Text color */
}

a {
	color: #0073e6;
/* Link color */
	text-decoration: none;
/* Remove underline */
}

a:hover {
	text-decoration: underline;
/* Underline on hover */
}

/* CSS FOR FIXED QUIZ BANNER */
.fixed-banner {
	display: none;
/* Controlled by JavaScript */
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background-color: #4a2d59;
/* Deep purple background */
	color: white;
	padding: 10px 20px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	align-items: center;
	justify-content: space-between;
	font-family: 'Inter', sans-serif;
}

.banner-content {
	display: flex;
	flex-grow: 1;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.banner-content p {
	margin: 0;
	font-size: .9rem;
}

.banner-cta-button {
	text-decoration: none;
	background-color: #e5a498;
/* Supportive brand color */
	color: #4a2d59;
/* Dark text for contrast */
	font-weight: bold;
	padding: 8px 15px;
	border-radius: 6px;
	white-space: nowrap;
	transition: background-color .3s;
}

.banner-cta-button:hover {
	background-color: #ffffff;
}

.close-banner {
	color: white;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
	padding: 0 10px;
}

/* Mobile Responsiveness: Stack content */
@media (max-width: 768px) {
	.banner-content {
		flex-direction: column;
		gap: 5px;
		text-align: center;
	}
	
	.banner-content p {
		font-size: .85rem;
	}
	
	.banner-cta-button {
		width: 100%;
		max-width: 250px;
		margin-top: 5px;
	}
}