.elementor-3057 .elementor-element.elementor-element-ffdafd3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-3057 .elementor-element.elementor-element-ffdafd3{--content-width:1370px;}}/* Start custom CSS for html, class: .elementor-element-256ed76 */:root {
	--primary-green: #13AB7B;
	--secondary-green: #16c786;
	--light-green: rgba(19, 171, 123, 0.08);
	--dark-green: #0f8c63;
	
	--text-primary: #2d3748;
	--text-secondary: #4a5568;
	--text-muted: #718096;
	--border-light: #e2e8f0;
	--bg-white: #ffffff;
	--bg-gray: #f7fafc;
	--bg-section: #fafbfc;
	
	--shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--border-radius: 12px;
}
.page-header {
	background: var(--bg-white);
	padding: 40px 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: 12px;
	letter-spacing: -0.02em; text-transform: none;
}

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

.last-updated {
	font-size: 13px;
	color: var(--text-muted);
	background: var(--bg-section);
	padding: 8px 16px;
	border-radius: 20px;
	display: inline-block;
}
.main-content {
	padding: 50px 0;
}

.content-grid {
	display: grid;
	grid-template-columns: 300px 1fr 320px;
	gap: 40px;
}
.sidebar {
	position: sticky;
	top: 20px;
	height: fit-content;
}

.nav-menu {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	padding: 25px 0;
	box-shadow: var(--shadow-light);
}

.nav-title {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-primary);
	padding: 0 20px 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--border-light);
}

.nav-list {
	list-style: none;
}

.nav-item {
	margin-bottom: 2px;
}

.nav-link {
	display: block;
	padding: 10px 20px;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
	background: var(--light-green);
	color: var(--primary-green);
	border-left-color: var(--primary-green);
}
.content-area {
	background: var(--bg-white);
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-light);
	overflow: hidden;
}

.price-section {
	display: none;
	padding: 30px;
}

.price-section.active {
	display: block;
}

.section-header {
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-light);
}

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

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

.search-section {
	margin-bottom: 20px;
	padding: 20px;
	border-bottom: 1px solid var(--border-light);
}

.search-input {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid var(--border-light);
	border-radius: 6px;
	font-size: 14px;
	color: var(--text-primary);
	background: var(--bg-section);
}

.search-input:focus {
	outline: none;
	border-color: var(--primary-green);
	background: var(--bg-white);
}

/* Стилизованные таблицы */
.price-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--border-light);
}

.price-table thead th {
	background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
	color: white;
	padding: 18px 25px;
	text-align: left;
	font-weight: 600;
	font-size: 16px;
}

.price-table thead th:last-child {
	text-align: right;
	width: 180px;
}

.price-table tbody tr {
	transition: background-color 0.2s ease;
}

.price-table tbody tr:nth-child(even) {
	background: var(--bg-section);
}

.price-table tbody tr:hover {
	background: var(--light-green);
}

.price-table tbody td {
	padding: 18px 25px;
	border-bottom: 1px solid var(--border-light);
	vertical-align: middle;
	font-size: 15px;
}

.price-table tbody td:first-child {
	font-weight: 500;
}

.price-table tbody td:last-child {
	text-align: right;
	font-weight: 600;
	color: var(--primary-green);
	font-size: 16px;
}

.price-table tbody tr:last-child td {
	border-bottom: none;
}

.price-table a {
	color: var(--text-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.price-table a:hover {
	color: var(--primary-green);
}

/* Правая колонка */
.sidebar-right {
	position: sticky;
	top: 20px;
	height: fit-content;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* CTA секция */
.cta-section {
	background: var(--light-green);
	padding: 25px;
	border-radius: var(--border-radius);
	text-align: center;
	border: 1px solid rgba(19, 171, 123, 0.2);
	box-shadow: var(--shadow-light);
}

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

.cta-text {
	font-size: 14px;
	color: var(--text-secondary);
	margin-bottom: 15px;
}

.cta-button {
	display: inline-block;
	padding: 12px 20px;
	background: var(--primary-green);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	font-size: 14px;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background: var(--dark-green);
	transform: translateY(-1px);
}

/* Примечания */
.notes-section {
	background: var(--bg-white);
	padding: 20px;
	border-radius: var(--border-radius);
	border-left: 4px solid var(--primary-green);
	box-shadow: var(--shadow-light);
}

.notes-title {
	font-size: 14px;
	font-weight: 600;
	color: var(--text-primary);
	margin-bottom: 10px;
}

.notes-list {
	font-size: 13px;
	color: var(--text-secondary);
	line-height: 1.6;
	padding-left: 15px;
}

.notes-list li {
	margin-bottom: 5px;
	font-size:14px;
}

/* Адаптивность */
@media (max-width: 1200px) {
	.content-grid {
		grid-template-columns: 250px 1fr 280px;
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.content-grid {
		grid-template-columns: 200px 1fr;
		gap: 25px;
	}
	
	.sidebar-right {
		display: none;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}
	
	.page-header {
		padding: 30px 0;
	}
	
	.page-title {
		font-size: 26px;
	}
	
	.content-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 30px 0;
	}
	
	.main-content {
		padding: 30px 0;
	}
	
	.sidebar {
		position: static;
	}
	
	.nav-menu {
		padding: 15px 0;
	}
	
	.nav-list {
		display: flex;
		flex-wrap: wrap;
		gap: 5px;
		padding: 0 15px;
	}
	
	.nav-item {
		margin-bottom: 0;
	}
	
	.nav-link {
		padding: 8px 12px;
		border-radius: 20px;
		border-left: none;
		font-size: 13px;
		white-space: nowrap;
	}
	
	.nav-link:hover,
	.nav-link.active {
		background: var(--primary-green);
		color: white;
	}
	
	.price-section {
		padding: 20px;
	}
	
	.section-title {
		font-size: 20px;
	}
	
	.price-table {
		font-size: 14px;
	}
	
	.price-table thead th,
	.price-table tbody td {
		padding: 12px 15px;
	}
	
	.price-table thead th:last-child,
	.price-table tbody td:last-child {
		width: 100px;
		font-size: 13px;
	}
	
	/* Показываем правую колонку внизу на мобильных */
	.sidebar-right {
		display: flex;
		position: static;
		margin-top: 30px;
	}
}

@media (max-width: 480px) {
	.price-table {
		font-size: 13px;
	}
	
	.price-table thead th,
	.price-table tbody td {
		padding: 10px 12px;
	}
	
	.price-section {
		padding: 15px;
	}
}

/* Анимации */
.price-section {
	animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}/* End custom CSS */