/* About Page Styles */
.about-page .about-intro {
	display: flex;
	align-items: center;
	gap: 25px;
	padding: 30px;
	background: linear-gradient(135deg, var(--main-color-1) 0%, var(--main-color-2) 100%);
	border-radius: 16px;
	margin-bottom: 35px;
	box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.about-page .intro-icon {
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	flex-shrink: 0;
}

.about-page .intro-icon svg {
	width: 38px;
	height: 38px;
	stroke: #ffffff;
}

.about-page .intro-title {
	font-size: 28px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	line-height: 1.3;
}

.about-page .about-section {
	margin-bottom: 35px;
}

.about-page .section-title {
	font-size: 24px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--main-color-1);
	display: inline-block;
}

.about-page .timeline-block {
	display: flex;
	gap: 30px;
	padding: 30px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	border-left: 4px solid var(--main-color-1);
}

.about-page .timeline-year {
	font-size: 48px;
	font-weight: 800;
	color: var(--main-color-1);
	white-space: nowrap;
	line-height: 1;
	padding-right: 30px;
	border-right: 3px solid #e2e8f0;
}

.about-page .timeline-content {
	flex: 1;
}

.about-page .timeline-content .section-title {
	margin-top: 0;
	margin-bottom: 15px;
}

.about-page .timeline-content p {
	font-size: 15px;
	color: #4a5568;
	line-height: 1.7;
	margin: 0;
}

.about-page .timeline-content strong {
	color: var(--main-color-1);
	font-weight: 700;
}

.about-page .company-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.about-page .stat-item {
	padding: 30px 20px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.about-page .stat-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
	border-color: var(--main-color-1);
}

.about-page .stat-icon {
	font-size: 42px;
	margin-bottom: 15px;
}

.about-page .stat-value {
	font-size: 36px;
	font-weight: 800;
	color: var(--main-color-1);
	line-height: 1;
	margin-bottom: 8px;
}

.about-page .stat-label {
	font-size: 13px;
	color: #718096;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 600;
}

.about-page .company-description {
	padding: 30px;
	background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
	border-radius: 16px;
	border-left: 4px solid var(--main-color-1);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.about-page .company-description p {
	font-size: 15px;
	color: #2d3748;
	line-height: 1.8;
	margin-bottom: 15px;
}

.about-page .company-description p:last-child {
	margin-bottom: 0;
}

.about-page .company-description strong {
	color: var(--main-color-1);
	font-weight: 700;
}

.about-page .features-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	margin-top: 25px;
}

.about-page .feature-item {
	padding: 25px 15px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.about-page .feature-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 24px rgba(102, 126, 234, 0.15);
	border-color: var(--main-color-1);
}

.about-page .feature-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-btn-gradient-1);
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	transition: all 0.3s ease;
}

.about-page .feature-item:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.about-page .feature-icon svg {
	width: 28px;
	height: 28px;
	stroke: #ffffff;
}

.about-page .feature-item h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--main-primary-text-color);
	margin-bottom: 8px;
	line-height: 1.3;
}

.about-page .feature-item p {
	font-size: 12px;
	color: var(--main-primary-text-color);
	line-height: 1.4;
	margin: 0;
}

.about-page .contact-cta {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	padding: 30px;
	background: var(--main-bg-gradient-2);
	border-radius: 16px;
	border-left: 4px solid var(--main-color-1);
	box-shadow: 0 6px 16px var(--main-color-1);
}

.about-page .cta-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--main-btn-gradient-1);
	border-radius: 50%;
	flex-shrink: 0;
}

.about-page .cta-icon svg {
	width: 32px;
	height: 32px;
	stroke: #ffffff;
}

.about-page .cta-content {
	flex: 1;
}

.about-page .cta-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--main-primary-text-color);
	margin-bottom: 12px;
}

.about-page .cta-content p {
	font-size: 14px;
	color: var(--main-primary-text-color);
	line-height: 1.6;
	margin-bottom: 18px;
}

.about-page .cta-email {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 25px;
	background: var(--main-bg-gradient-1);
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-page .cta-email:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	text-decoration: none;
}

.about-page .email-label {
	font-size: 13px;
	color: white;
	font-weight: 600;
}

.about-page .email-value {
	font-size: 16px;
	color: white;
	font-weight: 700;
}

.about-page .cta-contacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 20px;
}

.about-page .cta-email svg {
	flex-shrink: 0;
	color: white;
}

.about-page .cta-phone {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: rgba(21, 67, 114, 0.05);
	border-radius: 12px;
	color: var(--main-primary-text-color);
	font-size: 15px;
	transition: all 0.3s ease;
}

.about-page .cta-phone:hover {
	background: rgba(21, 67, 114, 0.1);
}

.about-page .cta-phone svg {
	flex-shrink: 0;
	color: var(--main-color-2);
}

/* Responsive */
@media (max-width: 1200px) {
	.about-page .features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 992px) {
	.about-page .company-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.about-page .features-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-page .section-title {
		font-size: 22px;
	}

	.about-page .timeline-block {
		flex-direction: column;
		padding: 25px;
		gap: 20px;
	}

	.about-page .timeline-year {
		font-size: 40px;
		border-right: none;
		border-bottom: 3px solid #e2e8f0;
		padding-right: 0;
		padding-bottom: 15px;
	}
}

@media (max-width: 768px) {
	.about-page .about-intro {
		flex-direction: column;
		text-align: center;
		padding: 25px;
	}

	.about-page .intro-title {
		font-size: 24px;
	}

	.about-page .company-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.about-page .stat-item {
		padding: 25px 15px;
	}

	.about-page .stat-icon {
		font-size: 36px;
	}

	.about-page .stat-value {
		font-size: 30px;
	}

	.about-page .stat-label {
		font-size: 12px;
	}

	.about-page .timeline-year {
		font-size: 36px;
	}

	.about-page .company-description {
		padding: 25px;
	}

	.about-page .company-description p {
		font-size: 14px;
	}

	.about-page .contact-cta {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 25px;
	}

	.about-page .cta-content h3 {
		font-size: 18px;
	}

	.about-page .cta-content p {
		font-size: 13px;
	}
}

@media (max-width: 576px) {
	.about-page .about-intro {
		padding: 20px;
	}

	.about-page .intro-icon {
		width: 60px;
		height: 60px;
	}

	.about-page .intro-icon svg {
		width: 32px;
		height: 32px;
	}

	.about-page .intro-title {
		font-size: 20px;
	}

	.about-page .section-title {
		font-size: 18px;
	}

	.about-page .company-stats {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.about-page .features-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.about-page .feature-item {
		padding: 20px;
	}

	.about-page .feature-icon {
		width: 55px;
		height: 55px;
	}

	.about-page .feature-icon svg {
		width: 26px;
		height: 26px;
	}

	.about-page .feature-item h4 {
		font-size: 14px;
	}

	.about-page .feature-item p {
		font-size: 11px;
	}

	.about-page .timeline-block {
		padding: 20px;
	}

	.about-page .timeline-year {
		font-size: 32px;
	}

	.about-page .timeline-content .section-title {
		font-size: 18px;
	}

	.about-page .timeline-content p {
		font-size: 14px;
	}

	.about-page .company-description {
		padding: 20px;
	}

	.about-page .company-description p {
		font-size: 13px;
	}

	.about-page .contact-cta {
		padding: 20px;
	}

	.about-page .cta-icon {
		width: 55px;
		height: 55px;
	}

	.about-page .cta-icon svg {
		width: 28px;
		height: 28px;
	}

	.about-page .cta-content h3 {
		font-size: 17px;
	}

	.about-page .cta-content p {
		font-size: 12px;
	}

	.about-page .cta-email {
		flex-direction: column;
		gap: 5px;
		padding: 10px 20px;
	}

	.about-page .email-label {
		font-size: 12px;
	}

	.about-page .email-value {
		font-size: 14px;
	}
}

