/* about.css — стили для страницы «О компании» */

.about-page {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 15px;
}

.about-page__title {
	font-size: 36px;
	color: #005737;
	margin-bottom: 30px;
	border-bottom: 2px solid #28a745;
	padding-bottom: 15px;
}

.about-page__intro p {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 20px;
}

.about-page__subtitle {
	font-size: 28px;
	color: #005737;
	margin: 40px 0 25px;
	position: relative;
	padding-left: 15px;
}

.about-page__subtitle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	bottom: 5px;
	width: 5px;
	background: #28a745;
	border-radius: 3px;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 30px;
}

.advantage-card {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 25px 20px;
	transition:
		transform 0.2s,
		box-shadow 0.2s;
}

.advantage-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.advantage-card__icon {
	font-size: 40px;
	margin-bottom: 15px;
}

.advantage-card__title {
	font-size: 20px;
	color: #005737;
	margin-bottom: 12px;
	font-weight: 600;
}

.advantage-card__text {
	font-size: 14px;
	color: #6c757d;
	line-height: 1.5;
}

.about-page__philosophy {
	font-size: 18px;
	font-style: italic;
	background: #f1f8e9;
	padding: 30px;
	border-radius: 8px;
	border-left: 5px solid #28a745;
	margin: 40px 0;
	color: #2c3e50;
}

.about-page__contacts {
	background: #fff;
	border: 1px solid #28a745;
	border-radius: 12px;
	padding: 30px;
	margin-top: 30px;
}

.contacts-block {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 20px 0 25px;
}

.contact-item {
	display: flex;
	align-items: center;
	font-size: 18px;
	border-bottom: 1px dashed #dee2e6;
	padding-bottom: 10px;
}

.contact-item:last-child {
	border-bottom: none;
}

.contact-item__icon {
	font-size: 24px;
	min-width: 50px;
	text-align: center;
	color: #28a745;
}

.contact-item__value {
	color: #333;
	text-decoration: none;
	font-weight: 500;
}

.contact-item__value a {
	color: #005737;
	text-decoration: none;
}

.contact-item__value a:hover {
	text-decoration: underline;
}

.about-page__final {
	font-size: 18px;
	font-weight: 500;
	color: #005737;
	text-align: center;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #28a745;
}

@media (max-width: 768px) {
	.about-page__title {
		font-size: 28px;
	}
	.about-page__subtitle {
		font-size: 24px;
	}
	.advantages-grid {
		grid-template-columns: 1fr;
	}
	.contact-item {
		font-size: 16px;
	}
	.contact-item__icon {
		min-width: 40px;
		font-size: 20px;
	}
}
