.MainWrapper_simple-page {
	color: var(--color-text-primary);
	padding: 3rem 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

h2, h3 {
	margin: 0 0 1rem 0;
}
p {
	margin: 0 0 1rem 0;
	line-height: 1.6;
}

/* Founder */
.about-founder {
	text-align: center;
	background: linear-gradient(135deg, #ffe06610, #ff6b6b10);
	border-radius: 1.5rem;
	padding: 4rem 2rem;
	margin-bottom: 4rem;
}
.founder-photo {
	width: 160px;
	height: 160px;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
}
.founder-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.founder h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}
.founder-position {
	color: #ff6b6b;
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.founder-description {
	color: var(--color-text-tertiary);
	font-size: 1rem;
	max-width: 500px;
	margin: 0 auto;
	margin-bottom: 1rem;
}




.founder>article {
	--position: calc(50% - 17.5rem);
	width: 35rem;
	position: absolute;
	left: var(--position);
	top: 32rem;
	border-radius: .5rem;
	background-color: rgb(51, 50, 56);
	padding: .5rem 1rem .75rem;
	text-align: left;
	font-size: 1.07rem;
	color: rgb(249, 249, 249);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
	z-index: 11;
	animation: NextAboutMe_buttons_scalein .35s ease-in-out forwards;
}

@keyframes NextAboutMe_buttons_scalein {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}
	50% {
		opacity: 0.3;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@media (max-width: 992px) {
	.founder > article {
		width: 28rem;
		--position: calc(50% - 14rem);
		top: 28rem;
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.founder > article {
		width: 90%;
		left: 5%;
		top: 20rem;
		font-size: 0.95rem;
		padding: 0.5rem 0.75rem 0.75rem;
	}
}

@media (max-width: 480px) {
	.founder > article {
		width: 95%;
		left: 2.5%;
		top: 18rem;
		font-size: 0.9rem;
		padding: 0.4rem 0.6rem 0.6rem;
	}
}



/* CTA */
.about-cta {
	text-align: center;
	padding: 4rem 1rem;
	background: linear-gradient(135deg, #ff6b6b, #ffad60);
	border-radius: 1.5rem;
	color: white;
}
.about-cta h2 {
	font-size: 2.5rem;
	font-weight: 700;
}
.about-cta p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}
.cta-button {
	padding: 1rem 2.5rem;
	background: white;
	color: #ff6b6b;
	font-weight: 600;
	border-radius: 0.75rem;
	text-decoration: none;
	transition: all 0.3s;
}
.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
	.founder-photo { width: 120px; height: 120px; }
	.about-cta h2 { font-size: 2rem; }
	.cta-button { padding: 0.75rem 1.5rem; }
}