

/* Start:/company/about/history/css/style.css?17754670724951*/
	.page-history-content .page-title {
		color: #F58F1F;
		font-weight: 700;
		font-size: 31px;
		margin: 0 0 30px 0;
		line-height: 1.2;
		text-align: center;
	}

	.page-history-content p {
		text-align: justify;
		color: #494F65;
		line-height: 1.5;
		margin: 0 0 24px 0;
		font-size: 22px;
	}

	.page-history-content .stats-block {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
		margin: 30px 0;
		justify-content: space-around;
	}

	.page-history-content .stat-card {
		background-color: #FAF6F6;
		border-radius: 12px;
		padding: 20px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
		text-align: center;
		min-width: 250px;
		flex: 1 1 auto;
	}

	.page-history-content .stat-number {
		font-size: 28px;
		font-weight: 700;
		color: #004780;
		margin-bottom: 8px;
		line-height: 1.2;
	}

	.page-history-content .stat-label {
		font-size: 16px;
		color: #494F65;
		text-transform: uppercase;
		letter-spacing: 0.3px;
		line-height: 1.4;
	}

	.page-history-content .who-we-are {
		display: flex;
		align-items: flex-start;
		gap: 40px;
		padding: 20px 0;
		flex-wrap: wrap;
	}

	.page-history-content .who-we-are-text h2 {
		color: #004780;
		font-size: 26px;
		font-weight: 700;
		line-height: 1.2;
		margin: 0 0 15px 0;
		text-transform: uppercase;
	}

	.page-history-content .who-we-are-text ul {
		padding-left: 22px;
		color: #494F65;
		line-height: 1.5;
		margin: 0;
		font-size: 22px;
	}

	.page-history-content .who-we-are-text ul li {
		margin: 10px 0;
	}

	.page-history-content .who-we-are-text ul li strong {
		color: #004780;
		font-weight: 700;
	}

	.page-history-content .who-we-are-icon img {
		width: 160px;
		height: auto;
	}

	.page-history-content .timeline-block h2 {
		color: #004780;
		font-size: 26px;
		font-weight: 700;
		line-height: 1.2;
		margin: 40px 0 20px 0;
		text-transform: uppercase;
	}

	.page-history-content .timeline-item {
		margin-bottom: 16px;
		padding: 16px 18px;
		background-color: #FAF6F6;
		border-left: 5px solid #F58F1F;
		border-radius: 10px;
		color: #494F65;
		line-height: 1.5;
		font-size: 22px;
	}

	.page-history-content .timeline-item strong {
		color: #004780;
		font-weight: 700;
	}


	.page-history-content .section-title {
		color: #004780;
		font-size: 26px;
		font-weight: 700;
		line-height: 1.2;
		margin: 50px 0 24px 0;
		text-transform: uppercase;
	}

	/* Онлайн-действия */
	.page-history-content .online-actions {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
		justify-content: space-around;
	}

	.page-history-content .action-card {
		background-color: #FAF6F6;
		border-radius: 12px;
		padding: 20px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
		text-align: center;
		min-width: 300px;
		flex: 0 1 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

	.page-history-content .action-card img {
		width: 50px;
		height: auto;
	}

	.page-history-content .action-card div {
		color: #004780;
		font-size: 20px;
		font-weight: 700;
		line-height: 1.4;
	}

	.page-history-content .strategy-list {
		padding-left: 30px;
		margin: 20px 0;
		list-style-type: none;
		counter-reset: item;
		color: #494F65;
		line-height: 1.5;
		font-size: 22px;
	}

	.page-history-content .strategy-list li {
		position: relative;
		margin-bottom: 16px;
		padding-left: 34px;
	}

	.page-history-content .strategy-list li::before {
		content: counter(item);
		counter-increment: item;
		position: absolute;
		left: 0;
		top: 0;
		color: #F58F1F;
		font-size: 30px;
		font-weight: 700;
		line-height: 1;
	}

	.page-history-content .program-link a {
		display: block;
		padding: 15px 18px;
		border: 2px solid #F58F1F;
		border-radius: 10px;
		color: #F58F1F;
		text-decoration: none;
		text-align: center;
		font-weight: 700;
		font-size: 20px;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.page-history-content .program-link a:hover {
		background-color: #F58F1F;
		color: white;
	}

	@media (max-width: 768px) {
		.page-history-content .page-title {
			font-size: 24px;
			margin-bottom: 20px;
		}

		.page-history-content p {
			font-size: 18px;
			line-height: 1.5;
			margin-bottom: 18px;
		}

		.page-history-content .who-we-are {
			flex-direction: column;
			align-items: flex-start;
			gap: 20px;
		}

		.page-history-content .who-we-are-text h2,
		.page-history-content .timeline-block h2,
		.page-history-content .section-title {
			font-size: 20px;
		}

		.page-history-content .who-we-are-text ul,
		.page-history-content .timeline-item,
		.page-history-content .strategy-list {
			font-size: 18px;
			line-height: 1.5;
		}

		.page-history-content .stats-block,
		.page-history-content .online-actions {
			flex-direction: column;
			align-items: center;
		}

		.page-history-content .action-card,
		.page-history-content .stat-card {
			width: 100%;
			max-width: 350px;
		}

		.page-history-content .action-card div {
			font-size: 18px;
		}

		.page-history-content .program-link a {
			font-size: 18px;
		}
	}

/* End */
/* /company/about/history/css/style.css?17754670724951 */
