.about-page {
	padding: 0 20px;
	min-height: 85vh;
	margin-top: 30px;
}

.about-container {
	max-width: 1200px;
	margin: 0 auto;
}

.about-hero h1 {
	font-size: 3rem;
	color: #ff00ff;
	text-align: center;
	margin-bottom: 15px;
	text-shadow:
		0 0 10px #ff00ff,
		0 0 20px #ff00ff,
		0 0 30px #ff00ff;
	user-select: none;
}

.about-hero p,
.about-history p,
.about-mission p,
.about-team p {
	font-size: 1.25rem;
	color: #0ff;
	text-shadow:
		0 0 5px #0ff;
	margin-bottom: 40px;
}

.about-history h2,
.about-mission h2,
.about-values h2,
.about-team h2,
.about-why h2 {
	font-size: 2rem;
	color: #ff00ff;
	margin-bottom: 20px;
	text-shadow:
		0 0 8px #ff00ff,
		0 0 15px #ff00ff;
	user-select: none;
}

.about-values ul,
.about-why ul {
	list-style: none;
	padding-left: 0;
}

.about-values ul li,
.about-why ul li {
	font-size: 1.1rem;
	margin-bottom: 15px;
	padding-left: 20px;
	position: relative;
	color: #0ff;
	text-shadow: 0 0 6px #0ff;
	user-select: none;
}

.about-values ul li::before,
.about-why ul li::before {
	content: "➤";
	position: absolute;
	left: 0;
	color: #ff00ff;
	text-shadow:
		0 0 8px #ff00ff,
		0 0 15px #ff00ff;
}

@media (max-width: 600px) {
	.about-hero h1 {
		font-size: 2.2rem;
	}

	.about-history h2,
	.about-mission h2,
	.about-values h2,
	.about-team h2,
	.about-why h2 {
		font-size: 1.5rem;
	}
}