.elementor-5384 .elementor-element.elementor-element-779956f{--display:flex;}@media(min-width:768px){.elementor-5384 .elementor-element.elementor-element-779956f{--content-width:1450px;}}/* Start custom CSS for html, class: .elementor-element-bce4a3b */:root {
	--primary-green: #4fa87f;
	--secondary-green: #6bb593;
	--light-green: rgba(79, 168, 127, 0.1);
	
	--text-primary: #333333;
	--text-secondary: #666666;
	--text-muted: #999999;
	--border-light: #e5e5e5;
	--bg-white: #ffffff;
	--bg-gray: #f8f9fa;
	
	--shadow-light: 0 2px 8px rgba(0,0,0,0.08);
	--shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
	--border-radius: 12px;
}
.page-header {
	background: var(--bg-white);
	padding: 30px 0;
	border-bottom: 1px solid var(--border-light);
}

.header-content {
	text-align: center;
}

.page-title {
	font-size: 35px;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 8px;text-transform: none;
}

.page-subtitle {
	font-size: 16px;
	color: var(--text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

.main-content {
	padding: 40px 0;
}

.info-sections {
	display: grid;
	gap: 30px;
}

.info-section {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 30px;
	box-shadow: var(--shadow-light);
}

.section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--border-light);
}

.section-icon {
	width: 40px;
	height: 40px;
	background: var(--light-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: var(--primary-green);
	flex-shrink: 0;
}

.section-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-primary);
}

.section-content {
	line-height: 1.6;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.info-card {
	background: var(--bg-gray);
	border-radius: 8px;
	padding: 20px;
	border-left: 4px solid var(--primary-green);
}

.card-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 8px;
}

.card-description {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 10px;
}

.card-link {
	color: var(--primary-green);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.card-link:hover {
	color: var(--secondary-green);
	text-decoration: underline;
}

/* Список документов */
.documents-list {
	display: grid;
	gap: 12px;
	margin-top: 15px;
}

.document-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: var(--bg-gray);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.document-item:hover {
	background: var(--light-green);
}

.document-icon {
	width: 32px;
	height: 32px;
	background: var(--primary-green);
	color: white;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.document-info {
	flex: 1;
}

.document-title {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-primary);
	margin-bottom: 2px;
}

.document-description {
	font-size: 13px;
	color: var(--text-secondary);
}

.document-link {
	color: var(--primary-green);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	padding: 6px 12px;
	border: 1px solid var(--primary-green);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.document-link:hover {
	background: var(--primary-green);
	color: white;
}

/* Часто задаваемые вопросы */
.faq-list {
	margin-top: 20px;
}

.faq-item {
	background: var(--bg-gray);
	border-radius: 8px;
	margin-bottom: 10px;
	overflow: hidden;
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 18px 20px;
	text-align: left;
	font-size: 15px;
	font-weight: 500;
	color: var(--text-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background: var(--light-green);
}

.faq-icon {
	font-size: 18px;
	color: var(--primary-green);
	transition: transform 0.3s ease;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-answer.open {
	max-height: 200px;
	padding: 0 20px 18px;
}

.faq-answer p {
	color: var(--text-secondary);
	font-size: 14px;
	line-height: 1.5;
}
.contact-banner {
	background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
	color: white;
	padding: 30px;
	border-radius: var(--border-radius);
	text-align: center;
	margin-top: 40px;
}

.banner-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 8px;
}

.banner-subtitle {
	font-size: 14px;
	opacity: 0.9;
	margin-bottom: 20px;
}

.contact-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.contact-btn {
	padding: 10px 20px;
	background: white;
	color: var(--primary-green);
	border: none;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.contact-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	
	.page-header {
		padding: 25px 0;
	}
	
	.page-title {
		font-size: 24px;
	}
	
	.info-section {
		padding: 25px 20px;
	}
	
	.section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	
	.section-title {
		font-size: 18px;
	}
	
	.cards-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.document-item {
		padding: 12px;
	}
	
	.document-link {
		padding: 4px 8px;
		font-size: 12px;
	}
	
	.contact-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.contact-btn {
		width: 200px;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.section-header {
		align-items: center;
		text-align: center;
	}
	
	.document-item {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}
	
	.faq-question {
		padding: 15px;
		font-size: 14px;
	}
	
	.faq-answer.open {
		padding: 0 15px 15px;
	}
}

.info-section {
	opacity: 0;
	transform: translateY(20px);
	animation: slideUp 0.6s ease forwards;
}

.info-section:nth-child(2) { animation-delay: 0.1s; }
.info-section:nth-child(3) { animation-delay: 0.2s; }
.info-section:nth-child(4) { animation-delay: 0.3s; }
.info-section:nth-child(5) { animation-delay: 0.4s; }
.info-section:nth-child(6) { animation-delay: 0.5s; }

@keyframes slideUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}/* End custom CSS */