/**
 * ITLife CDEK — About Page Styles
 */

.about-page { background: #f8fafc; }

/* Hero */
.about-hero {
	background: linear-gradient(135deg, #032d60 0%, #064a9a 100%);
	color: #fff;
	text-align: center;
	padding: 56px 24px;
}
.about-hero h1 {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 36px;
	font-weight: 800;
	margin: 0 0 12px;
}
.about-hero__sub {
	font-size: 17px;
	opacity: 0.85;
	margin: 0;
}

/* Layout */
.about-layout {
	max-width: 860px;
	margin: 0 auto;
	padding: 48px 24px 80px;
}

/* Section */
.about-section {
	margin-bottom: 48px;
}
.about-section__icon {
	width: 56px;
	height: 56px;
	background: #e0f2fe;
	color: #0284c7;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.about-section__icon--green { background: #f0fdf4; color: #2e844a; }
.about-section__icon--purple { background: #ede9fe; color: #7c3aed; }

.about-section h2 {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 24px;
	font-weight: 800;
	color: #0f172a;
	margin: 0 0 16px;
}
.about-section > p {
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	margin: 0;
}

/* Features grid */
.about-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 20px;
}
.about-feature {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
}
.about-feature h3 {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 15px;
	font-weight: 700;
	color: #1a1a2e;
	margin: 0 0 8px;
}
.about-feature p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Values */
.about-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 20px;
}
.about-value {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
}
.about-value strong {
	font-family: 'Nunito Sans', sans-serif;
	font-size: 15px;
	color: #1a1a2e;
	display: block;
	margin-bottom: 8px;
}
.about-value p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Disclaimer */
.about-disclaimer {
	background: #f1f5f9;
	border-radius: 12px;
	padding: 20px 24px;
	margin-top: 48px;
}
.about-disclaimer p {
	font-size: 13px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.about-hero h1 { font-size: 28px; }
	.about-hero { padding: 40px 20px; }
	.about-layout { padding: 32px 16px 60px; }
	.about-features,
	.about-values { grid-template-columns: 1fr; }
}
