/*!
Theme Name: cenzor
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cenzor
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

cenzor is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--accent-color: #1367DD;
	--accent-color-hover: #0f5bc4;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #404040;
	background: #fff;
}

.container {
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.header-top-bar {
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
	padding: 0.5rem 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1001;
}

.header-top-bar-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.header-top-bar-left {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.header-top-bar-center {
	flex: 1;
	display: flex;
	justify-content: center;
	max-width: 400px;
	margin: 0 auto;
}

.header-top-bar-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.mobile-search-toggle {
	display: none;
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 0.5rem;
	font-size: 1.1rem;
	transition: color 0.3s;
}

.mobile-search-toggle:hover {
	color: var(--accent-color);
}

.header-top-search {
	position: relative;
	width: 100%;
}

.header-top-search .search-form {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}

.header-top-search .search-field {
	padding: 0.4em 2.5em 0.4em 1em;
	border: 2px solid var(--accent-color);
	border-radius: 4px;
	font-size: 0.85rem;
	width: 100%;
	transition: border-color 0.3s;
	background: #fff;
}

.header-top-search .search-field::placeholder {
	color: var(--accent-color);
	font-weight: bold;
	opacity: 1;
}

.header-top-search .search-field::-webkit-input-placeholder {
	color: var(--accent-color);

}

.header-top-search .search-field::-moz-placeholder {
	color: var(--accent-color);
}

.header-top-search .search-field:-ms-input-placeholder {
	color: var(--accent-color);
}

.header-top-search .search-field:focus {
	outline: none;
	border-color: var(--accent-color);
}

.header-top-search .search-submit {
	position: absolute;
	right: 0.4em;
	background: none;
	border: none;
	color: var(--accent-color);
	cursor: pointer;
	padding: 0.3em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s;
	font-size: 0.9rem;
}



.header-top-search .search-submit:hover {
	color: var(--accent-color);
}

.search-popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.search-popup.active {
	opacity: 1;
	visibility: visible;
}

.search-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.search-popup-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	transform: scale(0.9);
	transition: transform 0.3s;
}

.search-popup.active .search-popup-content {
	transform: scale(1);
}

.search-popup-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 0.5rem;
	font-size: 1.5rem;
	line-height: 1;
	transition: color 0.3s;
}

.search-popup-close:hover {
	color: var(--accent-color);
}

.search-popup-title {
	margin: 0 0 1.5rem 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
}

.search-popup-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.search-popup-field {
	padding: 1em;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	width: 100%;
	transition: border-color 0.3s;
}

.search-popup-field:focus {
	outline: none;
	border-color: var(--accent-color);
}

.search-popup-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1em;
	background: var(--accent-color);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s;
}

.search-popup-submit:hover {
	background: var(--accent-color-hover);
}

.header-top-email,
.header-top-login {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #666;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
	padding: 0.3rem 0.6rem;
	border-radius: 4px;
	transition: all 0.2s;
}

.header-top-email:hover,
.header-top-login:hover {
	background: rgba(19, 103, 221, 0.1);
	color: var(--accent-color);
}

.header-top-email i,
.header-top-login i {
	font-size: 0.8rem;
}

.site-header {
	background: #fff;
	padding: 1rem 0;
	position: fixed;
	top: 40px;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	max-height: 120px;
	overflow: visible;
}

.header-container {
	position: relative;
	overflow: visible;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1.5rem;
}

.site-branding {
	flex-shrink: 0;
}

.site-branding a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.site-branding .custom-logo {
	max-height: 60px;
	width: auto;
	display: block;
}

.site-branding .site-title {
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: none;
	color: #404040;
	transition: color 0.3s;
}

.site-branding .site-title:hover {
	color: var(--accent-color);
}

.main-navigation {
	flex: 1;
	display: flex;
	align-items: center;
	overflow: visible;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: 2px solid var(--accent-color);
	border-radius: 4px;
	padding: 0.5rem 1rem;
	color: var(--accent-color);
	cursor: pointer;
	font-size: 1rem;
	transition: all 0.3s;
	align-items: center;
	gap: 0.5rem;
}

.menu-toggle:hover {
	background: var(--accent-color);
	color: #fff;
}

.menu-toggle i {
	font-size: 1.2rem;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	overflow: visible;
}

.main-navigation li {
	position: relative;
	margin: 0;
	overflow: visible;
}

.promo-banner{
	padding: 0 10px;
	margin-top: 160px;
}


.main-navigation a {
	display: block;
	padding: 5px;
	color: #404040;
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s;
	border-radius: 4px;
	white-space: nowrap;
}

.main-navigation > ul > li > a {
	position: relative;
}

.main-navigation a:hover {
	color: var(--accent-color);
	background: rgba(19, 103, 221, 0.05);
}

.main-navigation li.current-menu-item > a,
.main-navigation li.current-menu-ancestor > a {
	color: var(--accent-color);
	font-weight: 600;
}

.main-navigation .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	max-width: 350px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 0;
	overflow: visible;
}

.main-navigation .sub-menu:not(:has(.sub-menu)) {
	max-height: 500px;
	overflow-y: auto;
}

.main-navigation .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	margin-left: 0.5rem;
	margin-top: 0;
	overflow: visible;
}

.main-navigation .sub-menu .sub-menu .sub-menu {
	left: auto;
	right: 100%;
	margin-right: 0.5rem;
	margin-left: 0;
	overflow: scroll;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li.focus > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	height: auto;
}

.main-navigation .sub-menu li {
	margin: 0;
	width: 100%;
}

.main-navigation .sub-menu a {
	padding: 0.75rem 1.25rem;
	color: #404040;
	font-size: 0.9rem;
	border-radius: 0;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

	.main-navigation .sub-menu a:hover {
		background: rgba(19, 103, 221, 0.1);
		color: var(--accent-color);
	}

	.main-navigation > ul > li > a:hover {
		background: rgba(19, 103, 221, 0.05);
		color: var(--accent-color);
	}

.main-navigation .sub-menu .sub-menu a {
	padding-left: 1.75rem;
}

.main-navigation .sub-menu .sub-menu .sub-menu a {
	padding-left: 2.25rem;
}

.main-navigation .menu-item-has-children > a::after {
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	margin-left: 0.5rem;
	font-size: 0.75rem;
	transition: transform 0.3s;
	display: inline-block;
}

.main-navigation .sub-menu .menu-item-has-children > a::after {
	content: '\f105';
	position: absolute;
	right: 1rem;
}

.header-right {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}

.header-phone {
	color: #404040;
	font-weight: 500;
	white-space: nowrap;
	text-decoration: none;
	font-size: 0.95rem;
}

.header-city {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}

.city-label {
	color: #666;
	font-size: 0.9rem;
}

.header-search {
	position: relative;
}

.header-search .search-form {
	display: flex;
	align-items: center;
	position: relative;
}

.header-search .search-field {
	padding: 0.5em 2.5em 0.5em 1em;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 0.9rem;
	width: 200px;
	transition: border-color 0.3s;
}

.header-search .search-field:focus {
	outline: none;
	border-color: var(--accent-color);
}

.header-search .search-submit {
	position: absolute;
	right: 0.5em;
	background: none;
	border: none;
	color: #666;
	cursor: pointer;
	padding: 0.3em;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s;
}

.header-search .search-submit:hover {
	color: var(--accent-color);
}

.login-button {
	display: inline-block;
	padding: 0.6em 1.5em;
	background: var(--accent-color);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 500;
	transition: background 0.3s;
	font-size: 0.95rem;
}

.login-button:hover {
	background: var(--accent-color-hover);
	color: #fff;
}

.bvi-open {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0.8rem;
	background: transparent;
	color: #666;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s;
	border: none;
	position: relative;
	white-space: nowrap;
}

.bvi-open:hover {
	background: rgba(19, 103, 221, 0.1);
	color: var(--accent-color);
}

.bvi-open::before {
	content: '\f06e';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 0.9rem;
	line-height: 1;
}




.promo-banner {
	position: relative;
	z-index: 1;
}

.promo-banner .container{
	background: var(--accent-color);
	padding: 1rem 0;
	border-radius: 10px;
	max-width: 1440px;
}

.hero-navigation{
	display: flex;
	max-width: 280px;
	width: 100%;
	align-items: center;
	margin-top: 40px;
	gap: 30px 10px;
}

.promo-text {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	margin: 0;
	white-space: nowrap;
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

.hero-section {
	position: relative;
	padding: 0 10px;
	margin-top: 30px;
}

.hero-slider {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.hero-slides-wrapper {
	position: relative;
	width: 100%;
	display: grid;
}

.hero-slide {
	grid-row: 1;
	grid-column: 1;
	position: relative;
	width: 100%;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
	pointer-events: none;
}

.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.hero-section .container{
	padding: 50px;
	position: relative;
	z-index: 999;
	display: flex;
	max-width: 1440px;
	flex-direction: column;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #f5f5f5;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.hero-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.3);
}

.hero-content {
	color: #fff;
	position: relative;
	z-index: 999;
	transition: opacity 0.6s ease-in-out;
}

.hero-slide:not(.active) .hero-content {
	opacity: 0;
}

.hero-slide.active .hero-content {
	opacity: 1;
}

.hero-title {
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 1.5rem 0;
	line-height: 1.2;
}

.hero-title span{
	text-transform: uppercase;
	font-size: 48px;
}

.hero-description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin: 0 0 2rem 0;
	opacity: 0.95;
}

.hero-button {
	display: inline-block;
	padding: 1em 2.5em;
	background: var(--accent-color);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: background 0.3s;
}

.hero-button:hover {
	background: var(--accent-color-hover);
	color: #fff;
}


.hero_bottom{
	display: flex;
	position: relative;
	z-index: 20;
	gap: 30px;
	padding: 20px 0;
	color: #fff;
}


.nav-arrow {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 1rem;
}

.nav-arrow:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.progress-bar {
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	position: relative;
	border-radius: 1px;
}

.progress-fill {
	width: 30%;
	height: 100%;
	background: #fff;
	border-radius: 1px;
	transition: width 0.8s ease-in-out;
}

.hero-stats {
	position: relative;
	z-index: 1;
	padding: 2rem 0 0;
}

.stats-grid {
display: flex;
gap: 70px;
}

.stat-item {
	padding: 0;
}

.stat-number {
	font-size: 48px;
	font-weight: 300;
	color: #fff;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.stat-label {
	font-size: 20px;
	color: #fff;
	font-weight: 300;
	opacity: 0.9;
}

@media screen and (max-width: 768px) {
	.hero-section {
		margin-top: 20px;
		padding: 0 10px;
	}

	.fa-search{
		color: var(--accent-color);
	}

	.hero-section .container {
		padding: 30px 20px;
		min-height: 500px;
	}

	.hero-title {
		font-size: 20px;
		margin: 0 0 1rem 0;
		line-height: 1.3;
	}

	.hero-title span {
		font-size: 28px;
		display: block;
		margin-bottom: 5px;
	}

	.hero-description {
		font-size: 14px;
		line-height: 1.6;
		margin: 0 0 1.5rem 0;
	}

	.hero-button {
		padding: 0.8em 1.8em;
		font-size: 0.95rem;
	}

	.hero_bottom {
		flex-direction: column-reverse;
		gap: 20px;
		padding: 15px 0;
	}

	.hero-navigation {
		max-width: 100%;
		margin-top: 0;
		gap: 15px;
	}

	.nav-arrow {
		width: 36px;
		height: 36px;
		font-size: 0.85rem;
	}

	.progress-bar {
		width: 100%;
		max-width: 200px;
	}

	.hero-stats {
		padding: 0;
		width: 100%;
	}

	.hero-background::after{
		background: rgba(0, 0, 0, 0.5);
	}

	.stats-grid {
		flex-direction: column;
		gap: 20px;
	}

	.stat-item {
		padding: 0;
	}

	.stat-number {
		font-size: 32px;
		margin-bottom: 0.3rem;
	}

	.stat-label {
		font-size: 16px;
	}
}

.professions-section {
	padding: 60px 0;
	background: #fff;
	overflow: hidden;
	position: relative;

}

.professions-title {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 40px 0;
	color: #222;
}

.geolocation a{
	color: var(--accent-color);
	text-decoration: none;
	border-bottom: none;
	font-size: 16px;
}

.geolocation a path{
	fill: var(--accent-color);
}



.professions-swiper {
	padding: 20px 0 60px;
	overflow: visible;
}

.professions-swiper .swiper-wrapper {
	overflow: visible;
}

.professions-section::after {
	content: '';
	position: absolute;
	top: 20px;
	right: 0;
	width: 120px;
	height: calc(100% - 80px);
	background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	pointer-events: none;
	z-index: 10;
}

.profession-card {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e8e8e8;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.profession-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.profession-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.profession-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.profession-card:hover .profession-image img {
	transform: scale(1.05);
}

.profession-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
}

.profession-name {
	font-size: 20px;
	color: #404040;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

.profession-price {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.profession-price-label {
	font-size: 14px;
	color: #666;
}

.profession-price-value {
	font-size: 24px;
	color: #404040;
	font-weight: 700;
}

.profession-button {
	display: inline-block;
	padding: 12px 24px;
	background: #DC8800;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	transition: background 0.3s;
}

.profession-button:hover {
	background: #c57900;
	color: #fff;
}

.professions-swiper .swiper-button-next,
.professions-swiper .swiper-button-prev {
	color: var(--accent-color);
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	z-index: 20;
}

.professions-swiper .swiper-button-next:hover,
.professions-swiper .swiper-button-prev:hover {
	background: var(--accent-color);
	color: #fff;
	box-shadow: 0 4px 15px rgba(19, 103, 221, 0.3);
}

.professions-swiper .swiper-button-next::after,
.professions-swiper .swiper-button-prev::after {
	font-size: 20px;
	font-weight: 700;
}

.professions-swiper .swiper-pagination-bullet {
	background: var(--accent-color);
	opacity: 0.3;
	width: 12px;
	height: 12px;
}

.professions-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--accent-color);
}

@media screen and (max-width: 768px) {
	.professions-section {
		padding: 40px 0;
	}

	.professions-title {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.profession-image {
		height: 250px;
	}

	.advantage-item.advantage-empty{
		display: none;
	}

	.profession-name {
		padding: 15px;
		font-size: 16px;
	}

	.professions-swiper .swiper-button-next,
	.professions-swiper .swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.professions-swiper .swiper-button-next::after,
	.professions-swiper .swiper-button-prev::after {
		font-size: 16px;
	}
}

.advantages-section {
	padding: 100px 0;
	background: #fff;
}

.advantages-title {
	font-size: 42px;
	font-weight: 700;
	text-align: left;
	margin: 0 0 60px 0;
	color: #222;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.advantages-title-accent {
	color: var(--accent-color);
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.advantage-item {
	background: #1367DD10;
	border-radius: 16px;
	padding: 40px 30px;
	text-align: left;
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	min-height: 320px;
}

.advantage-item:not(.advantage-empty):hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.advantage-item.advantage-empty {
	background: transparent;
	min-height: 320px;
	padding: 0;
	display: none;
}

.advantage-icon {
	width: 100px;
	height: 100px;
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-shrink: 0;
}

.advantage-icon img {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.advantage-icon i {
	font-size: 60px;
	color: var(--accent-color);
}

.advantage-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px 0;
	color: #404040;
	line-height: 1.3;
}

.advantage-description {
	font-size: 16px;
	line-height: 1.6;
	color: #404040;
	margin: 0;
}

@media screen and (max-width: 1200px) {
	.advantages-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media screen and (max-width: 768px) {
	.advantages-section {
		padding: 60px 0;
	}

	.advantages-title {
		font-size: 28px;
		margin-bottom: 40px;
		letter-spacing: -0.2px;
		text-align: center;
	}

	.advantages-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.advantage-item {
		padding: 30px 20px;
		min-height: 280px;
	}

	.advantage-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}

	.advantage-icon img {
		width: 80px;
		height: 80px;
	}

	.advantage-icon i {
		font-size: 48px;
	}

	.advantage-title {
		font-size: 20px;
		margin-bottom: 12px;
	}

	.advantage-description {
		font-size: 15px;
	}
}

@media screen and (max-width: 480px) {
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.advantage-item {
		min-height: 260px;
	}
}

.professions-tabs-section {
	padding: 80px 0;
	background: #fff;
}

.professions-tabs-wrapper {
	display: flex;
	grid-template-columns: 280px 1fr;
	gap: 10px;
	align-items: stretch;
}

.professions-tabs-nav {
	display: flex;
	flex-direction: column;
	gap: 12px;

	background-color: #1367DD30;
	padding: 10px;
	border-radius: 10px;
}

.professions-tab-btn {
background-color: #1367DD47;
color: #fff;
font-size: 16px;
transition: all 0.3s;
display: flex;
flex-direction: column;
gap: 5px;
font-weight: 700;
font-family: 'Montserrat', sans-serif;
cursor: pointer;

text-align: left;
border: none;
padding: 15px 10px ;
border-radius: 10px;
}

.professions-tab-courses {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
}

.professions-tab-btn:hover {
	border-color: var(--accent-color);
	color: #fff;
	background-color: #1367DD;
}

.professions-tab-btn.active {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
}

.professions-tabs-content {
	flex: 1;
}

.professions-grid-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	height: 100%;
}

.profession-tab-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	position: relative;
	min-height: 100%;
	text-decoration: none;
	color: inherit;
}

.profession-tab-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.profession-tab-card.hidden {
	display: none;
}

.profession-tab-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #f5f5f5;
	z-index: 1;
}

.profession-tab-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.profession-tab-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.profession-tab-card:hover .profession-tab-image img {
	transform: scale(1.05);
}

.profession-tab-name {
	padding: 20px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	flex-grow: 1;
	display: flex;

	min-height: 60px;
	position: relative;
	z-index: 2;
}

.profession-tab-card-promo {
		background: var(--accent-color);
		display: flex;
	align-items: center;
	justify-content: center;
}

.profession-tab-promo-content {
	padding: 20px;
	text-align: center;
}

.profession-tab-promo-text {
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	line-height: 1.4;
}

@media screen and (max-width: 1024px) {
	.professions-tabs-wrapper {
		grid-template-columns: 240px 1fr;
		gap: 40px;
	}
}

@media screen and (max-width: 768px) {
	.professions-tabs-section {
		padding: 60px 0;
	}

	.professions-tabs-wrapper {
	display: flex;
	flex-direction: column;
	}

	.professions-tabs-nav {
		position: static;
		flex-direction: row;
		overflow-x: auto;
		padding-bottom: 10px;
	}

	.professions-tab-btn {
		white-space: nowrap;
	}

	.professions-grid-tabs {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 16px;
	}


	.profession-tab-name {
		padding: 15px;
		font-size: 14px;
		min-height: 50px;
	}
}

.certificates-section {
	padding: 100px 0;
	background: #fff;
}

.certificates-title {
	font-size: 42px;
	font-weight: 700;
	text-align: left;
	margin: 0 0 60px 0;
	color: #222;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.certificates-swiper {
	padding: 0 0 60px 0;
	position: relative;
}

.certificate-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.certificate-image {
	width: 100%;
	height: 0;
	padding-bottom: 141.4%;
	position: relative;
	overflow: hidden;
	background: #f5f5f5;
}

.certificate-image a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
}

.certificate-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.certificates-swiper .swiper-button-next,
.certificates-swiper .swiper-button-prev {
	color: var(--accent-color);
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	z-index: 20;
}

.certificates-swiper .swiper-button-next:hover,
.certificates-swiper .swiper-button-prev:hover {
	background: var(--accent-color);
	color: #fff;
	box-shadow: 0 4px 15px rgba(19, 103, 221, 0.3);
}

.certificates-swiper .swiper-button-next::after,
.certificates-swiper .swiper-button-prev::after {
	font-size: 20px;
	font-weight: 700;
}

.certificates-swiper .swiper-pagination-bullet {
	background: var(--accent-color);
	opacity: 0.3;
	width: 12px;
	height: 12px;
}

.certificates-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--accent-color);
}

.certificates-license-text {
	margin-top: 40px;
	padding: 30px;
	background: #1367DD10;
	border-radius: 16px;
	text-align: center;
}

.certificates-license-text p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #404040;
}

@media screen and (max-width: 768px) {
	.certificates-section {
		padding: 60px 0;
	}

	.certificates-title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.certificates-swiper .swiper-button-next,
	.certificates-swiper .swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.certificates-swiper .swiper-button-next::after,
	.certificates-swiper .swiper-button-prev::after {
		font-size: 16px;
	}

	.certificates-license-text {
		padding: 20px;
		margin-top: 30px;
	}

	.certificates-license-text p {
		font-size: 14px;
	}
}

.partners-section {
	padding: 100px 0;
	background: #fff;
}

.partners-title {
	font-size: 42px;
	font-weight: 700;
	text-align: left;
	margin: 0 0 60px 0;
	color: #222;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(3 , 1fr);
}

.partner-item {
	background: #fff;
	border: 1px solid #e0e0e0;
	overflow: hidden;
	margin-left: -1px;
	display: flex;
	margin-bottom: -1px;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.partner-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.3s ease;
}

.partner-item:hover .partner-image img {
	filter: grayscale(0);
}

.partner-text {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	font-weight: bold;
	color: #0066cc;
}

.partner-item.div3 {
	grid-column: span 2;
}

.partner-item.div4 {
	grid-column: 5;
}

.partner-item.div5 {
	grid-column: span 2;
	grid-row: 2;
}

.partner-item.div6 {
	grid-column: 3;
	grid-row: 2;
}

.partner-item.div7 {
	grid-column: 4;
	grid-row: 2;
}

.partner-item.div8 {
	grid-column: 5;
	grid-row: 2;
}

.partner-item.div9 {
	grid-row: 3;
	grid-column: 1;
}

.partner-item.div10 {
	grid-row: 3;
	grid-column: 2;
}

.partner-item.div11 {
	grid-row: 3;
	grid-column: 3;
}

.partner-item.div12 {
	grid-row: 3;
	grid-column: 4;
}

.partner-item.div13 {
	grid-row: 3;
	grid-column: 5;
}

.partner-item.div14,
.partner-item.div15,
.partner-item.div16,
.partner-item.div17 {
	display: none;
}

@media screen and (max-width: 1024px) {
	.partners-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto;
	}

	.partner-item.div3,
	.partner-item.div4,
	.partner-item.div5,
	.partner-item.div6,
	.partner-item.div7,
	.partner-item.div8,
	.partner-item.div9,
	.partner-item.div10,
	.partner-item.div11,
	.partner-item.div12,
	.partner-item.div13,
	.partner-item.div15,
	.partner-item.div16,
	.partner-item.div17 {
		grid-column: auto;
		grid-row: auto;
	}
}

@media screen and (max-width: 768px) {
	.partners-section {
		padding: 60px 0;
	}

	.partners-title {
		font-size: 28px;
		margin-bottom: 40px;
		text-align: center;
	}

	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.partner-item {
		padding: 15px;
	}
}

.teachers-section {
	padding: 100px 0;
	background: #fff;
	overflow: hidden;
}

.single-profession .site-main{
		padding-top: 140px;
	
}

.single-osnovnye_svedeniya .site-main{
		padding-top: 126px;
	
}

.page .site-main{
	padding-top: 130px;
}

.profession-hero-description p:last-child{
	font-size: 12px;
}

.teachers-title {
	font-size: 42px;
	font-weight: 700;
	text-align: left;
	margin: 0 0 60px 0;
	color: #222;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.teachers-swiper {
	padding: 0 0 60px 0;
	position: relative;
	overflow: visible;
}

.teacher-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.teacher-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.teacher-image {
	width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.teacher-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.teacher-card:hover .teacher-image img {
	transform: scale(1.05);
}

.teacher-info {
	padding: 24px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.teacher-name {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 0 0;
	color: #404040;
	line-height: 1.3;
}

.teacher-description p{
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin: 0 !important;
}

.teachers-swiper .swiper-button-next,
.teachers-swiper .swiper-button-prev {
	color: var(--accent-color);
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	z-index: 20;
}

.teachers-swiper .swiper-button-next:hover,
.teachers-swiper .swiper-button-prev:hover {
	background: var(--accent-color);
	color: #fff;
	box-shadow: 0 4px 15px rgba(19, 103, 221, 0.3);
}

.teachers-swiper .swiper-button-next::after,
.teachers-swiper .swiper-button-prev::after {
	font-size: 20px;
	font-weight: 700;
}

.teachers-swiper .swiper-pagination-bullet {
	background: var(--accent-color);
	opacity: 0.3;
	width: 12px;
	height: 12px;
}

.teachers-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--accent-color);
}

@media screen and (max-width: 768px) {
	.teachers-section {
		padding: 60px 0;
	}

	.single-osnovnye_svedeniya .site-main{
		padding-top: 86px;
	}

	.single-profession .site-main {
		padding-top: 110px;
	}

	.teachers-title {
		font-size: 28px;
		margin-bottom: 40px;
		text-align: center;
	}

	.teacher-image {
		height: 450px;
	}

	.teacher-info {
		padding: 20px;
	}

	.teacher-name {
		font-size: 20px;
	}

	.teacher-description {
		font-size: 15px;
	}

	.teachers-swiper .swiper-button-next,
	.teachers-swiper .swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.teachers-swiper .swiper-button-next::after,
	.teachers-swiper .swiper-button-prev::after {
		font-size: 16px;
	}
}

.benefits-section {
	padding: 100px 0;
	background: #fff;
}

.benefits-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.benefits-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.benefits-title-block {
	margin-bottom: 8px;
}

.benefits-title {
	font-size: 36px;
	font-weight: 700;
	margin: 0 0 12px 0;
	color: #222;
	line-height: 1.3;
}

.benefits-subtitle {
	font-size: 18px;
	font-weight: 600;
	color: var(--accent-color);
	margin: 0;
}

.benefits-text {
	font-size: 16px;
	line-height: 1.8;
	color: #404040;
	margin: 0;
}

.benefits-btn {
	display: inline-block;
	padding: 1em 2.5em;
	background: var(--accent-color);
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1rem;
	transition: background 0.3s;
	align-self: flex-start;
	margin-top: 8px;
}

.benefits-btn:hover {
	background: var(--accent-color-hover);
	color: #fff;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
	transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: #fff;
	border-radius: 8px;
	font-size: 24px;
	flex-shrink: 0;
}

.benefit-caption {
	flex: 1;
}

.benefit-title {
	font-size: 18px;
	font-weight: 600;
	color: #404040;
	line-height: 1.4;
	margin: 0;
}

@media screen and (max-width: 1024px) {
	.benefits-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.benefits-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media screen and (max-width: 768px) {
	.benefits-section {
		padding: 60px 0;
	}

	.benefits-title {
		font-size: 28px;
	}

	.benefits-subtitle {
		font-size: 16px;
	}

	.benefits-text {
		font-size: 15px;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.benefit-item {
		padding: 16px;
	}

	.benefit-icon {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}

	.benefit-title {
		font-size: 16px;
	}
}

.courses-info-section {
	padding: 100px 0;
	background: #fff;
}

.courses-article {
	max-width: 900px;
	margin: 0 auto;
}

.courses-main-title {
	font-size: 42px;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: #222;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.courses-subtitle {
	font-size: 32px;
	font-weight: 700;
	margin: 40px 0 20px 0;
	color: #222;
	line-height: 1.3;
}

.courses-h3 {
	font-size: 26px;
	font-weight: 700;
	margin: 40px 0 20px 0;
	color: #222;
	line-height: 1.3;
}

.courses-text {
	font-size: 16px;
	line-height: 1.8;
	color: #404040;
	margin: 0 0 24px 0;
}

.courses-text strong {
	font-weight: 700;
	color: var(--accent-color);
}

.courses-text a {
	color: var(--accent-color);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s;
}

.courses-text a:hover {
	border-bottom-color: var(--accent-color);
}

.courses-list {
	margin: 0 0 30px 0;
	padding-left: 24px;
	list-style: none;
}

.courses-list li {
	font-size: 16px;
	line-height: 1.8;
	color: #404040;
	margin-bottom: 12px;
	position: relative;
	padding-left: 24px;
}

.courses-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent-color);
	font-size: 20px;
	font-weight: 700;
}

.courses-images-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin: 40px 0;
}

.courses-figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.courses-figure img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.courses-figure:hover img {
	transform: scale(1.02);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.courses-figure figcaption {
	font-size: 14px;
	line-height: 1.5;
	color: #666;
	text-align: center;
	font-style: italic;
}

@media screen and (max-width: 768px) {
	.courses-info-section {
		padding: 60px 0;
	}

	.courses-main-title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.courses-subtitle {
		font-size: 24px;
		margin: 32px 0 16px 0;
	}

	.courses-h3 {
		font-size: 20px;
		margin: 32px 0 16px 0;
	}

	.courses-text {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.courses-list {
		padding-left: 20px;
	}

	.courses-list li {
		font-size: 15px;
		padding-left: 20px;
		margin-bottom: 10px;
	}

	.courses-images-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		margin: 32px 0;
	}

	.courses-figure figcaption {
		font-size: 13px;
	}
}

.reviews-section {
	padding: 100px 0;
	background: #fff;
}

.reviews-title {
	font-size: 42px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 60px 0;
	color: #222;
	line-height: 1.3;
	letter-spacing: -0.3px;
}

.reviews-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.review-filter-btn {
	padding: 10px 20px;
	background: #f5f5f5;
	border: 2px solid #e0e0e0;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	color: #666;
	cursor: pointer;
	transition: all 0.3s;
}

.review-filter-btn:hover,
.review-filter-btn.active {
	background: var(--accent-color);
	color: #fff;
	border-color: var(--accent-color);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.review-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 25px;
	display: flex;
	gap: 20px;
	transition: all 0.3s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.review-photo {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.review-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review-photo-placeholder {
	background: var(--accent-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
}

.review-content {
	flex: 1;
}

.review-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.review-name {
	font-size: 18px;
	font-weight: 700;
	color: #222;
	margin: 0;
}

.review-course {
	font-size: 12px;
	color: var(--accent-color);
	background: rgba(19, 103, 221, 0.1);
	padding: 4px 12px;
	border-radius: 12px;
}

.review-rating {
	margin-bottom: 12px;
}

.review-rating .star {
	font-size: 20px;
	color: #ddd;
	margin-right: 2px;
}

.review-rating .star.filled {
	color: #ffc107;
}

.review-text {
	font-size: 15px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 12px;
}

.review-date {
	font-size: 12px;
	color: #999;
}

.reviews-empty {
	text-align: center;
	padding: 60px 20px;
	color: #999;
	font-size: 16px;
	grid-column: 1 / -1;
}

.review-add-btn {
	display: block;
	margin: 40px auto 0;
	padding: 14px 40px;
	background: var(--accent-color);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.review-add-btn:hover {
	background: var(--accent-color-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(19, 103, 221, 0.3);
}

.rating-input {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	gap: 5px;
}

.rating-input input[type="radio"] {
	display: none;
}

.rating-input .star-label {
	font-size: 32px;
	color: #ddd;
	cursor: pointer;
	transition: color 0.2s;
}

.rating-input .star-label:hover,
.rating-input .star-label.selected,
.rating-input input[type="radio"]:checked ~ .star-label {
	color: #ffc107;
}

.rating-input input[type="radio"]:checked ~ .star-label {
	color: #ffc107;
}

.reviews-widget {
	width: 100%;
	min-height: 400px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.reviews-widget .yandex-reviews-widget {
	width: 100%;
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.reviews-section {
		padding: 60px 0;
	}

	.reviews-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.reviews-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.review-card {
		padding: 20px;
	}

	.review-photo {
		width: 50px;
		height: 50px;
	}

	.review-name {
		font-size: 16px;
	}

	.reviews-widget {
		min-height: 300px;
	}
}

.quiz-section {
	padding: 60px 0;
	background: #fff;
}

.quiz-title {
	font-size: 42px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 30px 0;
	color: #222;
}

.quiz-description {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	text-align: center;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.quiz-container {
	max-width: 800px;
	margin: 0 auto;
	background: #fff;
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quiz-progress {
	margin-bottom: 30px;
}

.quiz-progress-bar {
	width: 100%;
	height: 8px;
	background: #e0e0e0;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 10px;
}

.quiz-progress-fill {
	height: 100%;
	background: var(--accent-color);
	transition: width 0.3s;
	width: 0%;
}

.quiz-progress-text {
	font-size: 14px;
	color: #666;
	text-align: center;
	display: block;
}

.quiz-question {
	display: block;
}

.quiz-question-title {
	font-size: 24px;
	font-weight: 700;
	color: #222;
	margin: 0 0 30px 0;
	line-height: 1.4;
}

.quiz-answers {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}

.quiz-answer {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s;
	background: #fff;
}

.quiz-answer:hover {
	border-color: var(--accent-color);
	background: rgba(19, 103, 221, 0.05);
}

.quiz-answer input[type="radio"] {
	margin-right: 15px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.quiz-answer input[type="radio"]:checked ~ .quiz-answer-text {
	color: var(--accent-color);
	font-weight: 600;
}

.quiz-answer input[type="radio"]:checked {
	accent-color: var(--accent-color);
}

.quiz-answer.selected {
	border-color: var(--accent-color);
	background: rgba(19, 103, 221, 0.1);
}

.quiz-answer-text {
	font-size: 16px;
	color: #333;
	flex: 1;
	cursor: pointer;
}

.quiz-navigation {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-top: 30px;
}

.quiz-btn {
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.quiz-btn-next,
.quiz-btn-submit {
	background: var(--accent-color);
	color: #fff;
	margin-left: auto;
}

.quiz-btn-next:hover,
.quiz-btn-submit:hover {
	background: var(--accent-color-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(19, 103, 221, 0.3);
}

.quiz-btn-prev {
	background: #f5f5f5;
	color: #666;
}

.quiz-btn-prev:hover {
	background: #e0e0e0;
}

.quiz-btn-restart {
	background: var(--accent-color);
	color: #fff;
	display: block;
	margin: 30px auto 0;
}

.quiz-btn-restart:hover {
	background: var(--accent-color-hover);
}

.quiz-result {
	text-align: center;
	padding: 40px 20px;
}

.quiz-result-item {
	background: #f9f9f9;
	border-radius: 12px;
	padding: 40px;
}

.quiz-result-title {
	font-size: 32px;
	font-weight: 700;
	color: var(--accent-color);
	margin: 0 0 20px 0;
}

.quiz-result-description {
	font-size: 18px;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}

.quiz-result-points {
	font-size: 20px;
	font-weight: 600;
	color: #222;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 2px solid #e0e0e0;
}

.quiz-result-default {
	padding: 40px 20px;
}

.quiz-result-default h2 {
	font-size: 28px;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.quiz-result-default p {
	font-size: 18px;
	color: #666;
}

.quiz-contact-form {
	padding: 40px;
	background: #f9f9f9;
	border-radius: 12px;
	margin-top: 30px;
}

.quiz-contact-title {
	font-size: 24px;
	font-weight: 700;
	color: #222;
	margin: 0 0 25px 0;
	text-align: center;
}

.quiz-contact-form-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 500px;
	margin: 0 auto;
}

.quiz-btn-submit-contact {
	width: 100%;
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	.quiz-section {
		padding: 40px 0;
	}

	.quiz-title {
		font-size: 32px;
	}

	.quiz-container {
		padding: 25px 20px;
	}

	.quiz-question-title {
		font-size: 20px;
	}

	.quiz-answer {
		padding: 12px 15px;
	}

	.quiz-navigation {
		flex-direction: column;
	}

	.quiz-btn {
		width: 100%;
	}

	.quiz-result-title {
		font-size: 24px;
	}

	.quiz-result-description {
		font-size: 16px;
	}
}

.quiz-section-home {
	padding: 100px 0;
	background: #f9f9f9;
}

.quiz-section-title {
	font-size: 42px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 60px 0;
	color: #222;
}

.quiz-section-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.quiz-card-home {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
}

.quiz-card-home:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quiz-card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.quiz-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.quiz-card-home:hover .quiz-card-image img {
	transform: scale(1.05);
}

.quiz-card-content {
	padding: 25px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.quiz-card-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 15px 0;
}

.quiz-card-title a {
	color: #222;
	text-decoration: none;
	transition: color 0.3s;
}

.quiz-card-title a:hover {
	color: var(--accent-color);
}

.quiz-card-excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 15px;
	flex: 1;
}

.quiz-card-info {
	margin-bottom: 15px;
}

.quiz-questions-count {
	font-size: 14px;
	color: var(--accent-color);
	background: rgba(19, 103, 221, 0.1);
	padding: 6px 12px;
	border-radius: 12px;
	display: inline-block;
}

.quiz-card-button {
	display: inline-block;
	padding: 12px 30px;
	background: var(--accent-color);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s;
	margin-top: auto;
}

.quiz-card-button:hover {
	background: var(--accent-color-hover);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(19, 103, 221, 0.3);
}

.quiz-section-footer {
	text-align: center;
	margin-top: 40px;
}

.quiz-section-link {
	font-size: 18px;
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s;
}

.quiz-section-link:hover {
	color: var(--accent-color-hover);
}

@media screen and (max-width: 768px) {
	.quiz-section-home {
		padding: 60px 0;
	}

	.quiz-section-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.quiz-section-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.quiz-card-content {
		padding: 20px;
	}
}

.site-footer {
	background: var(--accent-color);
	color: #fff;
	padding: 60px 0 30px;
	margin-top: 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 250px 250px 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-brand {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.footer-logo img {
	max-height: 50px;
	width: auto;
	filter: brightness(0) invert(1);
}

.footer-logo-icon {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
}

.footer-brand-text {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer-brand-name {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.footer-brand-subtitle {
	font-size: 12px;
	color: #fff;
	line-height: 1.3;
}

.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-contact-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-contact-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 4px;
}

.footer-contact-value {
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer-contact-value:hover {
	opacity: 0.8;
	color: #fff;
}

.footer-nav-column {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-nav-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.footer-nav-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-nav-menu li {
	margin: 0;
}

.footer-nav-menu a {
	font-size: 13px;
	color: #fff;
	text-decoration: underline;
	transition: opacity 0.3s;
	line-height: 1.5;
}

.footer-nav-menu a:hover {
	opacity: 0.8;
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer-promo {
	font-size: 14px;
	color: #fff;
	line-height: 1.6;
	text-align: center;
}

.footer-ministries {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-ministries a {
	font-size: 13px;
	color: #fff;
	text-decoration: underline;
	transition: opacity 0.3s;
}

.footer-ministries a:hover {
	opacity: 0.8;
	color: #fff;
}

.footer-legal-text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	text-align: center;
}

.footer-legal-text a {
	color: #fff;
	text-decoration: underline;
}

.footer-legal-text a:hover {
	opacity: 0.8;
}

.footer-policies {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
}

.footer-policies a {
	font-size: 12px;
	color: #fff;
	text-decoration: underline;
	transition: opacity 0.3s;
}

.footer-policies a:hover {
	opacity: 0.8;
	color: #fff;
}

.footer-copyright {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 20px;
	flex-wrap: wrap;
	gap: 15px;
}

.footer-copyright-text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
}

.footer-privacy-link a {
	font-size: 12px;
	color: #fff;
	text-decoration: underline;
	transition: opacity 0.3s;
}

.footer-privacy-link a:hover {
	opacity: 0.8;
	color: #fff;
}

@media screen and (max-width: 1200px) {
	.footer-content {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 30px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}
}

@media screen and (max-width: 768px) {
	.site-footer {
		padding: 40px 0 20px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-brand {
		grid-column: 1;
	}

	.footer-ministries {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.footer-policies {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.footer-copyright {
		flex-direction: column;
		text-align: center;
	}
}

.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 10000;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.active {
	display: flex;
	opacity: 1;
}

.modal-content {
	background: #fff;
	border-radius: 12px;
	padding: 40px;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 32px;
	color: #666;
	cursor: pointer;
	line-height: 1;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s;
}

.modal-close:hover {
	color: #222;
}

.modal-title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 30px 0;
	color: #222;
	text-align: center;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-size: 14px;
	font-weight: 500;
	color: #404040;
}

.float-label-group {
	position: relative;
}

.float-label-group label {
	position: absolute;
	left: 16px;
	top: 12px;
	font-size: 16px;
	color: #999;
	pointer-events: none;
	transition: all 0.3s ease;
	background: #fff;
	padding: 0 4px;
}

.float-label-group input:focus + label,
.float-label-group input.has-value + label {
	top: -8px;
	left: 12px;
	font-size: 12px;
	color: var(--accent-color);
	font-weight: 500;
}

.float-label-group input {
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 16px;
	font-family: inherit;
	transition: border-color 0.3s;
	width: 100%;
	box-sizing: border-box;
	background: transparent;
}

.float-label-group input:focus {
	outline: none;
	border-color: var(--accent-color);
}

.form-group input,
.form-group textarea,
.form-group select {
	padding: 12px 16px;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	font-size: 16px;
	font-family: inherit;
	transition: border-color 0.3s;
	width: 100%;
	box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--accent-color);
}

.form-group select {
	background-color: #fff;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 40px;
}

.form-group textarea {
	resize: vertical;
	min-height: 100px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	flex-direction: row;
	cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	cursor: pointer;
}

.checkbox-label span {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

.radio-group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.radio-label {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: row;
	cursor: pointer;
	padding: 10px;
	border-radius: 6px;
	transition: background-color 0.3s;
}

.radio-label:hover {
	background-color: #f5f5f5;
}

.radio-label input[type="radio"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	cursor: pointer;
	accent-color: var(--accent-color);
}

.radio-label span {
	font-size: 14px;
	color: #404040;
	line-height: 1.5;
}

#legal-fields,
#legal-fields-inn {
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.modal-submit {
	padding: 14px 30px;
	background: var(--accent-color);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	margin-top: 10px;
}

.modal-submit:hover {
	background: var(--accent-color-hover);
}

@media screen and (max-width: 768px) {
	.modal-content {
		padding: 30px 20px;
		width: 95%;
	}

	.modal-title {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.modal-form {
		gap: 16px;
	}
}

.profession-hero {
	position: relative;
	width: 95%;
	margin: 30px auto;
	min-height: 500px;
	background-size: cover;
	
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 30px;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.profession-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(19, 103, 221, 0.7);
	z-index: 1;
}

.profession-hero .container {
	position: relative;
	z-index: 2;
	padding: 40px 20px;
	width: 100%;
}
.profession-hero .breadcrumbs .container{
	padding: 0 0 0;
	margin-bottom: 20px;
}

.profession-hero-content {
	position: relative;
	color: #fff;
	max-width: 600px;
}

.profession-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.profession-badge {
	display: inline-block;
	padding: 8px 16px;
	background: #DC8800;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border-radius: 4px;
}

.profession-hero-title {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 24px 0;
	line-height: 1.3;
}

.profession-hero-description {
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	margin-bottom: 32px;
}

.profession-hero-description p {
	margin: 0 0 16px 0;
	color: #fff;
}

.profession-hero-description p:last-child {
	margin-bottom: 0;
}

.profession-consultation-button {
	display: inline-block;
	padding: 1em 2.5em;
	background: #DC8800;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: background 0.3s;
}

.profession-consultation-button:hover {
	background: #c57900;
	color: #fff;
}

@media screen and (max-width: 768px) {
	.profession-hero {
		margin: 10px;
		min-height: 400px;
		border-radius: 20px;
	}

	.profession-hero .container {
		padding: 30px 15px;
	}

	.profession-hero-content {
		max-width: 100%;
	}

	.profession-hero-title {
		font-size: 28px;
	}

	.profession-badges {
		gap: 8px;
		margin-bottom: 20px;
	}

	.profession-badge {
		font-size: 12px;
		padding: 6px 12px;
	}
}

.profession-tabs-section {
	padding:  0 0;
	background: #fff;
}

.profession-tabs-nav {
	display: flex;
	flex-direction: row;
	gap: 12px;
	flex-wrap: wrap;
	border-bottom: 2px solid #e8e8e8;
	padding-bottom: 0;
}

.profession-tab-btn {
	background: transparent;
	color: #404040;
	font-size: 16px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	text-align: center;
	border: none;
	padding: 15px 24px;
	border-radius: 8px 8px 0 0;
	cursor: pointer;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	position: relative;
	bottom: -2px;
	white-space: nowrap;
	text-decoration: none;
}

.profession-tab-btn:hover {
	color: #DC8800;
	background: #f9f9f9;
}

.profession-tab-btn.active {
	color: #DC8800;
	font-weight: 600;
	background: transparent;
	border-bottom: 3px solid #DC8800;
}

.profession-content-section {
	padding: 60px 0;
	scroll-margin-top: 100px;
}

.profession-application-section {
	background: #E8F4FD;
}

.profession-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #404040;
	margin: 0 0 40px 0;
}

.profession-tab-content {
	font-size: 16px;
	line-height: 1.6;
	color: #404040;
}

.profession-tab-content p {
	margin: 0 0 16px 0;
}

.profession-tab-content p:last-child {
	margin-bottom: 0;
}

.profession-pricing-table {
	overflow-x: auto;
}

.profession-pricing-table table {
	width: 100%;
	border-collapse: collapse;
	background: #1367DD10;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profession-pricing-table thead {
	background: #1367DD;
	color: #fff;
}

.profession-pricing-table th {
	padding: 16px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 16px;
}

.profession-pricing-table th:nth-child(3) {
	min-width: 120px;
}

.profession-pricing-table td {
	padding: 16px 20px;
	border-bottom: 1px solid #e8e8e8;
	font-size: 15px;
}

.profession-pricing-table tbody tr:nth-child(even) {
	background: #1367DD10;
}

.profession-pricing-table td:nth-child(3) {
	white-space: nowrap;
	min-width: 120px;
}

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

.profession-pricing-table tbody tr:hover {
	background: #f9f9f9;
}

.profession-pricing-button {
	display: inline-block;
	padding: 10px 24px;
	background: #1367DD;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	transition: background 0.3s;
	white-space: nowrap;
}

.profession-pricing-button:hover {
	background: #0f5bc4;
	color: #fff;
}


.profession-results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.profession-result-item {
	background: #fff;
	border-radius: 8px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.profession-result-icon {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1367DD;
	border-radius: 50%;
	color: #fff;
	font-size: 14px;
}

.profession-result-text {
	font-size: 15px;
	line-height: 1.6;
	color: #404040;
}


.profession-steps-horizontal {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	align-items: flex-start;
}

.profession-step-horizontal {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}

.profession-step-circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: conic-gradient(
		#1367DD 0deg 90deg,
		#4A9EFF 90deg 180deg,
		#00C9C9 180deg 270deg,
		#DC8800 270deg 360deg
	);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
}

.profession-step-circle::before {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #fff;
}

.profession-step-circle-number {
	position: relative;
	z-index: 1;
	font-size: 48px;
	font-weight: 700;
	color: #404040;
}

.profession-step-horizontal-title {
	font-size: 18px;
	font-weight: 700;
	color: #1367DD;
	margin: 0;
	line-height: 1.3;
}

.profession-step-horizontal-description {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.profession-step-button {
	display: inline-block;
	padding: 12px 32px;
	background: #1367DD;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	font-size: 14px;
	transition: background 0.3s;
	margin-top: 8px;
}

.profession-step-button:hover {
	background: #0f5bc4;
	color: #fff;
}

.profession-application-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.profession-application-title {
	font-size: 32px;
	font-weight: 700;
	color: #404040;
	margin: 0;
}

.profession-application-text {
	font-size: 16px;
	line-height: 1.6;
	color: #404040;
	margin: 0 0 24px 0;
}

.profession-application-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.profession-application-btn {
	display: inline-block;
	padding: 14px 32px;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	transition: all 0.3s;
}

.profession-application-btn-login {
	background: #DC8800;
	color: #fff;
}

.profession-application-btn-login:hover {
	background: #c57900;
	color: #fff;
}

.profession-application-btn-register {
	background: #fff;
	color: #404040;
	border: 1px solid #666;
}

.profession-application-btn-register:hover {
	background: #f5f5f5;
	color: #404040;
	border-color: #404040;
}

@media screen and (max-width: 1024px) {
	.profession-results-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.profession-steps-horizontal {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media screen and (max-width: 768px) {
	.profession-tabs-section {
		padding: 40px 0;
	}

	.profession-tabs-nav {
		gap: 8px;
	}

	.profession-tab-btn {
		font-size: 14px;
		padding: 12px 16px;
	}

	.profession-pricing-table {
		font-size: 14px;
	}

	.profession-pricing-table th,
	.profession-pricing-table td {
		padding: 12px 16px;
		font-size: 14px;
	}

	.profession-results-grid {
		grid-template-columns: 1fr;
	}

	.profession-section-title {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.profession-steps-horizontal {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.profession-step-circle {
		width: 100px;
		height: 100px;
	}

	.profession-step-circle::before {
		width: 85px;
		height: 85px;
	}

	.profession-step-circle-number {
		font-size: 40px;
	}

	.profession-application-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.profession-application-title {
		font-size: 24px;
	}
}

.profession-related-section {
	padding: 60px 0;
	background: #fff;
}

.profession-related-title {
	font-size: 32px;
	font-weight: 700;
	color: #404040;
	margin: 0 0 40px 0;
	text-align: center;
}

.profession-archive-section {
	padding: 60px 0;
}

.profession-archive-header {
	margin-bottom: 40px;
	text-align: center;
}

.profession-archive-title {
	font-size: 36px;
	font-weight: 700;
	color: #404040;
	margin: 0 0 16px 0;
}

.profession-archive-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

.profession-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.profession-related-card {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #e8e8e8;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.profession-related-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.profession-related-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.profession-related-card:hover .profession-related-image img {
	transform: scale(1.05);
}

.profession-related-card-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
}

.profession-related-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.profession-related-name {
	font-size: 20px;
	color: #404040;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

.profession-related-price {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.profession-related-price-label {
	font-size: 14px;
	color: #666;
}

.profession-related-price-value {
	font-size: 24px;
	color: #404040;
	font-weight: 700;
}

.profession-related-button {
	display: inline-block;
	padding: 12px 24px;
	background: #DC8800;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	transition: background 0.3s;
	margin-top: auto;
}

.profession-related-button:hover {
	background: #c57900;
	color: #fff;
}

@media screen and (max-width: 1024px) {
	.profession-related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.profession-related-section {
		padding: 40px 0;
	}

	.profession-related-title {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.profession-related-grid {
		grid-template-columns: 1fr;
	}
}

.map-section {
	padding: 60px 0;
	background: #fff;
}

.map-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #404040;
	margin: 0 0 40px 0;
	text-align: center;
}

.yandex-map {
	width: 100%;
	height: 500px;
	border-radius: 10px;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.map-section {
		padding: 40px 0;
	}

	.map-section-title {
		font-size: 24px;
		margin-bottom: 24px;
	}

	.yandex-map {
		height: 400px;
	}
}

.breadcrumbs {
	padding: 20px 0 0;
	background-color: transparent;
}

.profession-hero .breadcrumbs {
	padding: 0 0 0;
}

.breadcrumbs-list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 14px;
}

.breadcrumbs-item {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumbs-item:hover {
	color: #DC8800;
}

.breadcrumbs-item.breadcrumbs-current {
	color: #fff;
	font-weight: 500;
}

.breadcrumbs-separator {
	color: rgba(255, 255, 255, 0.6);
	margin: 0 8px;
}

.site-main {
	padding-top: 160px;
}

/* Breadcrumbs for regular pages (not in hero) */
.site-main > .breadcrumbs {
	padding: 20px 0;
	background-color: #f5f5f5;
}

.site-main > .breadcrumbs .breadcrumbs-item {
	color: #666;
}

.site-main > .breadcrumbs .breadcrumbs-item:hover {
	color: #DC8800;
}

.site-main > .breadcrumbs .breadcrumbs-item.breadcrumbs-current {
	color: #333;
}

.site-main > .breadcrumbs .breadcrumbs-separator {
	color: #999;
}

@media (max-width: 768px) {
	.breadcrumbs {
		padding: 15px 0;
	}

	.breadcrumbs-list {
		font-size: 12px;
	}

	.breadcrumbs-separator {
		margin: 0 5px;
	}
}

/* Page Styles */
.page-content {
	padding: 40px 0 60px;
	background: #fff;
}

.page-layout-wrapper {
	display: flex;
	gap: 30px;
	align-items: flex-start;
}

.page-main-content {
	flex: 1;
	min-width: 0;
}

.page-article {
	max-width: 100%;
}

.page-featured-image {
	margin-bottom: 30px;
	border-radius: 8px;
	overflow: hidden;
}

.page-featured-image img {
	width: 100%;
	height: auto;
	display: block;
}

.page-header {
	margin-bottom: 30px;
}

.page-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin: 0 0 20px;
	line-height: 1.3;
}

.page-content-wrapper {
	max-width: 100%;
}

.page-article .entry-content {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

.page-article .entry-content h2 {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin: 30px 0 20px;
	line-height: 1.3;
}

.page-article .entry-content h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333;
	margin: 25px 0 15px;
	line-height: 1.3;
}

.page-article .entry-content h4 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin: 20px 0 12px;
	line-height: 1.3;
}

.page-article .entry-content p {
	margin-bottom: 20px;
}

.page-article .entry-content ul,
.page-article .entry-content ol {
	margin: 20px 0;
	padding-left: 30px;
}

.page-article .entry-content li {
	margin-bottom: 10px;
}

.page-article .entry-content a {
	color: #DC8800;
	text-decoration: none;
	transition: color 0.3s ease;
}

.page-article .entry-content a:hover {
	color: #b87000;
	text-decoration: underline;
}

.page-article .entry-content img {
	max-width: 100%;
	height: auto;
	margin: 20px 0;
	border-radius: 8px;
}

.page-article .entry-content blockquote {
	margin: 25px 0;
	padding: 20px 25px;
	border-left: 4px solid #DC8800;
	background: #f9f9f9;
	font-style: italic;
}

.page-article .entry-content table {
	width: 100%;
	margin: 25px 0;
	border-collapse: collapse;
}

.page-article .entry-content table th,
.page-article .entry-content table td {
	padding: 12px 15px;
	border: 1px solid #ddd;
	text-align: left;
}

.page-article .entry-content table th {
	background: #f5f5f5;
	font-weight: 600;
}

.page-article .entry-content .page-links {
	margin: 30px 0;
	padding: 20px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.page-article .entry-content .page-links a {
	display: inline-block;
	margin: 0 5px;
	padding: 5px 10px;
	background: #f5f5f5;
	border-radius: 4px;
}

.page-article .entry-content .page-links a:hover {
	background: #DC8800;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 768px) {
	.page-content {
		padding: 30px 0 40px;
	}

	.page-title {
		font-size: 28px;
	}

	.page-article .entry-content h2 {
		font-size: 24px;
	}

	.page-article .entry-content h3 {
		font-size: 20px;
	}

	.page-article .entry-content h4 {
		font-size: 18px;
	}

	.page-featured-image {
		margin-bottom: 20px;
	}

	.page-layout-wrapper {
		flex-direction: column;
		gap: 20px;
	}
}

/* Callback Form Sidebar */
.page-sidebar {
	width: 320px;
	flex-shrink: 0;
	align-self: flex-start;
}

.callback-form-widget {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px;
	position: sticky;
	top: 20px;
	z-index: 10;
}

.callback-form-title {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	margin: 0 0 15px;
	text-transform: uppercase;
	line-height: 1.4;
}

.callback-form-text {
	font-size: 14px;
	color: #666;
	margin: 0 0 20px;
	line-height: 1.5;
}

.callback-phone-link {
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: var(--accent-color);
	text-decoration: none;
	margin-bottom: 20px;
	transition: color 0.3s ease;
}

.callback-phone-link:hover {
	color: var(--accent-color-hover);
	text-decoration: underline;
}

.callback-form {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
}

.callback-form .form-group {
	margin-bottom: 15px;
}

.callback-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.callback-form input[type="tel"] {
	width: 100%;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.callback-form input[type="tel"]:focus {
	outline: none;
	border-color: var(--accent-color);
}

.callback-submit-button {
	width: 100%;
	padding: 12px 20px;
	background: var(--accent-color);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease;
}

.callback-submit-button:hover {
	background: var(--accent-color-hover);
}

@media (max-width: 1024px) {
	.page-sidebar {
		width: 280px;
	}
}

@media (max-width: 768px) {
	.page-sidebar {
		width: 100%;
		position: static;
	}

	.callback-form-widget {
		position: static;
	}
}

.mobil_trips {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 10px;
}

.trips_1 {
	background: var(--accent-color);
	color: #fff;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	text-align: center;
	display: block;
}

.trips_1:hover {
	background: var(--accent-color-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.trips_1:first-of-type {
	margin-bottom: 10px;
}

.mobil-trips-learn-more {
	color: #fff;
	text-decoration: none;
	display: block;
	width: 100%;
	height: 100%;
}

.trips-learn-more {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.trips-learn-more:hover {
	background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(118, 75, 162, 0.4);
}

.mobil-trips-application {
	color: #fff;
	text-decoration: none;
	display: block;
}

.trips_block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.trips_2,
.trips_3 {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s;
}

.trips_2:hover,
.trips_3:hover {
	transform: scale(1.1);
}

.trips_2 {
	background: #fff;
}

.trips_2 a {
	color: var(--accent-color);
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.trips_3 {
	background: #25D366;
}

.trips_3 a {
	color: #fff;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.site-header {
		padding: 0.5rem 0;
		max-height: none;
		z-index: 9999999;
	}

	.header-top {
		flex-wrap: nowrap;
		gap: 0.75rem;
	}

	.site-branding .custom-logo {
		max-height: 40px;
	}

	.menu-toggle {
		display: flex;
		order: 2;
		padding: 0.4rem 0.8rem;
		font-size: 0.85rem;
	}

	.menu-toggle-text {
		display: none;
	}

	.main-navigation {
		order: 3;
		flex: 0 0 auto;
	}

	.main-navigation::before {
		content: '';
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.5);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		z-index: 998;
		pointer-events: none;
	}

	.main-navigation.toggled::before {
		opacity: 1;
		visibility: visible;
		pointer-events: all;
	}

	.main-navigation ul {
		position: fixed;
		top: 0;
		left: -320px;
		border-radius: 0 10px 10px 0;
		width: 320px;
		height: 100vh;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 1.5rem 0;
		overflow-y: auto;
		box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
		transition: left 0.3s ease;
		z-index: 999;
		gap: 0;
	}

	.main-navigation.toggled ul {
		left: 0;
	}

	.main-navigation li {
		width: 100%;
		border-bottom: 1px solid #f5f5f5;
	}

	.main-navigation > ul > li:last-child {
		border-bottom: none;
	}

	.main-navigation a {
		padding: 1rem 1.5rem;
		white-space: normal;
		font-size: 0.95rem;
	}

	.main-navigation > ul > li > a {
		font-weight: 600;
		color: #222;
	}

	.main-navigation .sub-menu {
		position: static;
		box-shadow: none;
		border-radius: 0;
		padding: 0;
		margin: 0;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		background: #fafafa;
		border-top: 1px solid #f0f0f0;
	}

	.main-navigation .sub-menu.active {
		display: flex;
	}

	.main-navigation .sub-menu .sub-menu {
		position: static;
		margin: 0;
		background: #f5f5f5;
	}

	.main-navigation .sub-menu .sub-menu .sub-menu {
		position: static;
		margin: 0;
		background: #f0f0f0;
	}

	.main-navigation .sub-menu a {
		padding-left: 2.5rem;
		font-size: 0.9rem;
		color: #555;
	}

	.main-navigation .sub-menu .sub-menu a {
		padding-left: 3.5rem;
		font-size: 0.85rem;
	}

	.main-navigation .sub-menu .sub-menu .sub-menu a {
		padding-left: 4.5rem;
		font-size: 0.85rem;
	}

	.main-navigation .menu-item-has-children > a::after {
		content: '\f107';
		position: absolute;
		right: 1.5rem;
		margin-left: 0;
	}

	.main-navigation .menu-item-has-children > a.active::after {
		transform: rotate(180deg);
	}

	.header-right {
		order: 1;
		gap: 0.5rem;
		flex: 1;
		justify-content: flex-end;
	}

	.header-phone {
		display: none;
	}

	.header-city {
		font-size: 0.85rem;
	}

	.header-city .geolocation {
		position: relative !important;
		right: auto !important;
	}

	.header-city .geolocation__link {
		display: flex;
		align-items: center;
		gap: 0.25rem;
	}

	.header-city .geolocation__value {
		display: inline;
	}

	.header-search {
		order: -1;
		width: 100%;
		margin-bottom: 0.5rem;
	}

	.header-search .search-field {
		width: 100%;
	}

	.header-top-bar {
		padding: 0.4rem 0;
	}

	.header-top-bar-content {
		gap: 0.5rem;
	}

	.header-top-bar-left {
		width: 100%;
		justify-content: center;
		order: 1;
	}

	.header-top-bar-center {
		display: none;
	}

	.mobile-search-toggle {
		display: block;
	}

	.header-top-bar-right {
		width: auto;
		justify-content: flex-end;
		order: 2;
		gap: 0.75rem;
	}

	.search-popup-content {
		padding: 1.5rem;
		width: 95%;
	}

	.search-popup-title {
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}

	.search-popup-field {
		font-size: 16px;
	}

	.bvi-open {
		font-size: 0.8rem;
		padding: 0.3rem 0.6rem;
	}

	.bvi-open::before {
		font-size: 0.85rem;
	}

	.header-top-bar-right {
		width: 100%;
		justify-content: flex-end;
		gap: 1rem;
	}

	.header-top-email span,
	.header-top-login span {
		display: none;
	}

	.header-top-email,
	.header-top-login {
		padding: 0.3rem 0.5rem;
		font-size: 0.8rem;
	}

	.header-top-email i,
	.header-top-login i {
		font-size: 0.9rem;
	}

	.site-header {
		top: 40px;
	}

	.header-login {
		display: none;
	}

	.login-button {
		padding: 0.4em 0.8em;
		font-size: 0.85rem;
	}

	.promo-banner {
		margin-top: 130px;
		overflow: hidden;
	}

	.promo-banner .container {
		overflow: hidden;
		padding: 0.5rem 0;
	}

	.promo-text{
		font-size: 16px;	
	}

	.promo-text {
		display: inline-block;
		animation: marquee 30s linear infinite;
	}

	.promo-text::after {
		content: ' • Курсы повышения квалификации ДПО и профессиональной переподготовки';
		display: inline-block;
		padding-left: 2rem;
	}

	.mobil_trips {
		right: 15px;
		bottom: 15px;
	}

	.trips_1 {
		padding: 10px 16px;
		font-size: 12px;
	}

	.trips_1:first-of-type {
		margin-bottom: 8px;
	}

	.trips_2,
	.trips_3 {
		width: 45px;
		height: 45px;
	}

	.trips_2 a {
		font-size: 20px;
	}

	.trips_3 a {
		font-size: 24px;
	}

	.cookie-consent {
		bottom: 0;
		left: 0;
		right: 0;
		padding: 1rem;
	}

	.cookie-consent-content {
		flex-direction: column;
		gap: 1rem;
	}

	.cookie-consent-buttons {
		flex-direction: column;
		width: 100%;
		gap: 0.5rem;
	}

	.cookie-btn {
		width: 100%;
	}
}

.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	z-index: 10000;
	padding: 1.5rem;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-consent-content {
	max-width: 1480px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.cookie-consent-text {
	flex: 1;
}

.cookie-consent-text p {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #404040;
}

.cookie-consent-text a {
	color: var(--accent-color);
	text-decoration: underline;
}

.cookie-consent-text a:hover {
	text-decoration: none;
}

.cookie-consent-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s;
	white-space: nowrap;
}

.cookie-btn-accept {
	background: var(--accent-color);
	color: #fff;
}

.cookie-btn-accept:hover {
	background: var(--accent-color-hover);
}

.cookie-btn-decline {
	background: #f5f5f5;
	color: #404040;
	border: 1px solid #e0e0e0;
}

.cookie-btn-decline:hover {
	background: #e8e8e8;
}

.contacts-page {
	padding: 2rem 0 4rem;
}

.contacts-layout {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	gap: 2rem;
	align-items: start;
}

.contacts-left {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.contacts-title {
	font-size: 2rem;
	font-weight: 700;
	color: #404040;
	margin: 0 0 1.5rem 0;
}

.contacts-info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-label {
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
}

.contact-value {
	font-size: 1.125rem;
	color: #404040;
	text-decoration: none;
	font-weight: 500;
}

.contact-value:hover {
	color: var(--accent-color);
}

.contact-phone {
	font-size: 1.5rem;
	font-weight: 600;
}

.contact-social {
	display: flex;
	gap: 1rem;
	margin: 0.5rem 0;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--accent-color);
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 1.2rem;
}

.social-link:hover {
	background: var(--accent-color-hover);
	transform: translateY(-2px);
}

.company-details-section {
	margin-top: 3rem;
	grid-column: 1 / -1;
}

.company-details-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #404040;
	margin: 0 0 1.5rem 0;
}

.company-details-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.company-details-table tr {
	border-bottom: 1px solid #e9ecef;
}

.company-details-table tr:last-child {
	border-bottom: none;
}

.company-details-table .detail-label {
	padding: 1rem 1.5rem;
	font-size: 0.875rem;
	color: #666;
	font-weight: 500;
	width: 40%;
	background: #f8f9fa;
	border-right: 1px solid #e9ecef;
}

.company-details-table .detail-value {
	padding: 1rem 1.5rem;
	font-size: 0.95rem;
	color: #404040;
}

.contacts-center {
	height: 100%;
}

.contacts-map {
	width: 100%;
	height: 100%;
	min-height: 600px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contacts-map iframe {
	width: 100%;
	height: 100%;
	min-height: 600px;
	border: none;
	border-radius: 8px;
}

.contacts-right {
	position: sticky;
	top: 180px;
}

.contacts-form-widget {
	background: var(--accent-color);
	border-radius: 12px;
	padding: 2rem;
	color: #fff;
}

.contacts-form-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem 0;
}

.contacts-form-text {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin: 0 0 1.5rem 0;
}

.contacts-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contacts-form .form-group {
	margin: 0;
}

.contacts-form input {
	width: 100%;
	padding: 0.875rem 1rem;
	border: none;
	border-radius: 6px;
	font-size: 0.95rem;
	background: rgba(255, 255, 255, 0.95);
	color: #404040;
	transition: all 0.3s;
}

.contacts-form input::placeholder {
	color: #999;
}

.contacts-form input:focus {
	outline: none;
	background: #fff;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.contacts-submit-button {
	width: 100%;
	padding: 1rem 1.5rem;
	background: #fff;
	color: var(--accent-color);
	border: none;
	border-radius: 6px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	transition: all 0.3s;
	margin-top: 0.5rem;
}

.contacts-submit-button:hover {
	background: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contacts-submit-button i {
	font-size: 0.9rem;
}

.contacts-form-disclaimer {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
	margin-top: 1rem;
}

.contacts-form-disclaimer a {
	color: #fff;
	text-decoration: underline;
}

.contacts-form-disclaimer a:hover {
	text-decoration: none;
}

@media screen and (max-width: 1200px) {
	.contacts-layout {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.contacts-right {
		grid-column: 1 / -1;
		position: static;
	}

	.contacts-center {
		grid-column: 1 / -1;
		order: -1;
	}
}

@media screen and (max-width: 768px) {
	.contacts-layout {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contacts-center {
		order: 2;
	}

	.contacts-right {
		order: 3;
	}

	.contacts-map {
		min-height: 400px;
	}

	.contacts-form-widget {
		padding: 1.5rem;
	}

	.company-details-section {
		margin-top: 2rem;
	}

	.company-details-table .detail-label,
	.company-details-table .detail-value {
		padding: 0.75rem 1rem;
		font-size: 0.85rem;
	}

	.company-details-table .detail-label {
		width: 45%;
	}
}

