.management-section {
	padding: 5vh;
	display: flex;
	justify-content: center;
}

.management-container {
	margin: none;
	background-color: var(--background-color);
	padding: 2vw 5vw;
	min-width: 85vw;
	border-radius: 10px;
}

/* Paragraphs and list items scale with viewport */
.management-container p {
	font-size: 1rem; /* Larger font size for better readability */
	margin-bottom: 2vh;
	line-height: 1.6;
	color: var(--primary-color);
}

.management-container ul {
	list-style-type: disc;
	margin-left: 4vw;
	font-size: 1.2vw; /* Larger font size for better readability */
	line-height: 1.6;
	color: var(--primary-color);
}

.management-container ul li {
	margin-bottom: 1vh;
}

/* Heading scaling with viewport */
.management-container h2 {
	font-size: 1rem; /* Larger headings */
	margin-top: 3vh;
	color: var(--primary-color);
}

/* Links styling */
.management-container a {
	color: var(--secondary-color);
	text-decoration: none;
	font-size: 1vw; /* Larger font size for better readability */
}

.management-container a:hover {
	text-decoration: underline;
	color: var(--highlight-color);
}

/* Responsive styles for tablets and smaller devices */
@media (max-width: 1180px) {
	h1 {
		font-size: 5vw; /* Keep heading large enough on tablets */
	}

	.management-container p,
	.management-container ul,
	.management-container ul li,
	.management-container h2 {
		font-size: 2.5vw; /* Make text slightly smaller but readable on tablets */
	}

	.management-section {
		padding: none;
	}

	.management-container {
		padding: 4vw;
	}
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
	h1 {
		font-size: 6vw; /* Keep the heading large */
	}

	.management-section {
		padding: 3vh;
	}

	.management-container p,
	.management-container ul,
	.management-container ul li,
	.management-container h2,
	.management-container a {
		font-size: 3vw; /* Larger font size for mobile */
	}

	.management-container {
		padding: 3vw;
	}
}

/* Responsive styles for very small screens */
@media (max-width: 480px) {
	h1 {
		font-size: 7vw; /* Larger heading for small screens */
	}

	.management-section {
		padding: none;
	}

	.management-container p,
	.management-container ul,
	.management-container ul li,
	.management-container h2,
	.management-container a {
		font-size: 4vw; /* Increase text size for small screens */
	}

	.management-container {
		padding: 2vh;
	}
}
