/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story-section {
	background: #FFFFFF;
}

.about-story-content {
	max-width: 680px;
	margin: 0 auto;
	text-align: center;
}

.about-story-content p {
	font-size: 17px;
	color: #4B5563;
	line-height: 1.8;
	margin-bottom: 20px;
}

.about-story-content p:last-child {
	margin-bottom: 0;
}

.about-values-section {
	background: #f7faff;
	border-top: 1px solid #e2ecfe;
}

.about-team-section {
	background: #FFFFFF;
	border-top: 1px solid #e2ecfe;
}

.about-team-grid {
	display: flex;
	gap: 24px;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 700px;
	margin: 0 auto;
}

.about-team-card {
	flex: 1;
	min-width: 200px;
	max-width: 320px;
	background: #FFFFFF;
	border: 1px solid #E5E7EB;
	border-radius: 24px;
	padding: 36px 28px;
	text-align: center;
	transition: all 0.3s ease;
}

.about-team-card:hover {
	border-color: #BFDBFE;
	box-shadow: 0 8px 30px rgba(59, 130, 246, 0.08);
	transform: translateY(-4px);
}

.about-team-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #EEF2FF, #DBEAFE);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
	font-size: 28px;
	color: #3B82F6;
}

.about-team-card h4 {
	font-size: 17px;
	font-weight: 600;
	color: #111827;
	margin-bottom: 4px;
}

.about-team-card .role {
	font-size: 13px;
	color: #3B82F6;
	font-weight: 600;
	margin-bottom: 10px;
}

.about-team-card p {
	font-size: 14px;
	color: #6B7280;
	line-height: 1.6;
}

@media (max-width: 576px) {
	.about-team-grid {
		flex-direction: column;
		align-items: center;
	}

	.about-team-card {
		max-width: 100%;
	}
}
