/* Основные стили - сохранены как на сайте */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	color: #333;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Хедер */
.header {
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo img {
	max-height: 60px;
}

.header-contacts {
	display: flex;
	align-items: center;
	gap: 30px;
}

.phone {
	display: flex;
	align-items: center;
	gap: 10px;
}

.phone a {
	color: #333;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
}

.social a {
	color: #666;
	margin: 0 10px;
	font-size: 20px;
	transition: color 0.3s;
}

.social a:hover {
	color: #d4a574;
}

.btn-callback {
	background: #d4a574;
	color: white;
	padding: 12px 25px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s;
}

.btn-callback:hover {
	background: #c8955c;
}

/* Навигация */
.main-nav {
	border-top: 1px solid #eee;
	padding: 15px 0;
}

.main-nav ul {
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 40px;
}

.main-nav a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: color 0.3s;
}

.main-nav a:hover {
	color: #d4a574;
}

/* Секция услуг */
.services-section {
	padding: 80px 0;
	background: #f9f9f9;
}

.services-section h1 {
	text-align: center;
	margin-bottom: 50px;
	color: #222;
	font-size: 36px;
}

.service-category {
	margin-bottom: 60px;
}

.service-category h2 {
	color: #d4a574;
	margin-bottom: 30px;
	font-size: 28px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 20px;
}

.service-item {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.3s;
}

.service-item:hover {
	transform: translateY(-5px);
}

.service-name {
	font-weight: 500;
	font-size: 16px;
	flex: 1;
}

.service-price {
	font-weight: 700;
	color: #d4a574;
	font-size: 18px;
	margin-left: 20px;
}

/* Портфолио */
.portfolio-section {
	padding: 80px 0;
	background: white;
}

.portfolio-section h2 {
	text-align: center;
	margin-bottom: 50px;
	color: #222;
	font-size: 36px;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.portfolio-item {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	height: 250px;
}

.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}

.portfolio-item:hover img {
	transform: scale(1.05);
}

.portfolio-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.7);
	color: white;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
	transform: translateY(0);
}

.portfolio-instructions {
	background: #f5f5f5;
	padding: 20px;
	border-radius: 8px;
	margin-top: 30px;
	font-size: 14px;
	color: #666;
}

/* FAQ */
.faq-section {
	padding: 80px 0;
	background: #f9f9f9;
}

.faq-section h2 {
	text-align: center;
	margin-bottom: 50px;
	color: #222;
	font-size: 36px;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-weight: 600;
	font-size: 18px;
}

.faq-question:hover {
	background: #f8f8f8;
}

.faq-answer {
	padding: 0 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.faq-answer p {
	padding: 20px 0;
	color: #666;
	border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-question i {
	transition: transform 0.3s;
}

/* Контакты */
.contacts-section {
	padding: 80px 0;
	background: white;
}

.contacts-section h2 {
	text-align: center;
	margin-bottom: 50px;
	color: #222;
	font-size: 36px;
}

.contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-item {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	align-items: flex-start;
}

.contact-item i {
	color: #d4a574;
	font-size: 24px;
	margin-top: 5px;
}

.contact-item h3 {
	margin-bottom: 10px;
	color: #333;
}

.contact-item a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-item a:hover {
	color: #d4a574;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.social-btn {
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	color: white;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.social-btn.whatsapp {
	background: #0088cc;
}

.social-btn.vk {
	background: #4C75A3;
}

.social-btn:not(.whatsapp):not(.vk) {
	background: #E4405F;
}

.contact-map {
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
}

#map {
	width: 100%;
	height: 100%;
}

/* Форма обратного звонка */
.callback-form {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0,0,0,0.2);
	display: none;
	z-index: 1001;
	width: 90%;
	max-width: 400px;
}

.callback-form.active {
	display: block;
}

.callback-content h3 {
	margin-bottom: 20px;
	text-align: center;
}

#callbackForm input {
	width: 100%;
	padding: 12px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.btn-submit {
	width: 100%;
	padding: 15px;
	background: #d4a574;
	color: white;
	border: none;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
}

.btn-submit:hover {
	background: #c8955c;
}

.callback-note {
	text-align: center;
	margin-top: 15px;
	font-size: 14px;
	color: #666;
}

/* Футер */
.footer {
	background: #222;
	color: white;
	padding: 50px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 30px;
}

.footer-logo img {
	max-height: 50px;
	margin-bottom: 15px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: #d4a574;
}

.legal-note {
	font-size: 12px;
	color: #888;
	margin-top: 10px;
	line-height: 1.4;
}

/* Адаптивность */
@media (max-width: 992px) {
	.contacts-grid {
			grid-template-columns: 1fr;
	}
	
	.footer-content {
			grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.header-top {
			flex-direction: column;
			gap: 20px;
	}
	
	.main-nav ul {
			flex-wrap: wrap;
			gap: 20px;
	}
	
	.services-grid {
			grid-template-columns: 1fr;
	}
	
	.footer-content {
			grid-template-columns: 1fr;
	}
}
/* Стили для страницы политики */
.privacy-page {
	padding: 40px 0;
	background: #f8f9fa;
	min-height: 100vh;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #d4a574;
	text-decoration: none;
	margin-bottom: 30px;
	font-weight: 500;
}

.back-link:hover {
	text-decoration: underline;
}

.page-title {
	text-align: center;
	margin-bottom: 40px;
	color: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.page-title i {
	color: #d4a574;
}
/* ========== СТИЛИ ДЛЯ ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ ========== */
.privacy-policy {
	padding: 60px 0;
	background: #f8f9fa;
	border-top: 1px solid #eee;
}

.privacy-content h2 {
	text-align: center;
	margin-bottom: 40px;
	color: #222;
	font-size: 32px;
}

.privacy-content h2 i {
	color: #d4a574;
	margin-right: 10px;
}

.privacy-section {
	background: white;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.privacy-section h3 {
	color: #333;
	margin-bottom: 20px;
	font-size: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.privacy-section h3 i {
	color: #d4a574;
}

.info-box {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin: 20px 0;
	border-left: 4px solid #d4a574;
}

.info-icon {
	font-size: 24px;
	color: #d4a574;
}

.info-text h4 {
	margin-bottom: 10px;
	color: #333;
}

.privacy-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin: 30px 0;
}

.detail-item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.detail-item i {
	color: #d4a574;
	font-size: 20px;
	margin-top: 5px;
}

.detail-item ul {
	margin: 10px 0 0 20px;
	color: #555;
}

.detail-item li {
	margin-bottom: 8px;
	line-height: 1.5;
}

.data-processing {
	background: #f0f7ff;
	padding: 20px;
	border-radius: 8px;
	margin: 25px 0;
}

.data-processing h4 {
	color: #333;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.data-processing ul {
	margin: 15px 0 15px 20px;
}

.small-text {
	font-size: 14px;
	color: #666;
	margin-top: 15px;
}

.small-text a {
	color: #d4a574;
	text-decoration: none;
}

.small-text a:hover {
	text-decoration: underline;
}

/* Управление настройками */
.control-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 20px;
}

.option {
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.option h4 {
	color: #333;
	margin-bottom: 15px;
	font-size: 18px;
}

.browser-tips {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 15px;
}

.browser-tip {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #555;
	font-size: 14px;
}

.browser-tip i {
	color: #d4a574;
	width: 20px;
}

.opt-out-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ff6b6b;
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	margin-top: 10px;
	font-weight: 500;
	transition: background 0.3s;
}

.opt-out-link:hover {
	background: #ff5252;
	color: white;
}

.warning-note {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	color: #856404;
	padding: 12px;
	border-radius: 5px;
	margin-top: 15px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
}

.warning-note i {
	color: #f39c12;
}

/* Блок согласия */
.consent-section {
	margin-top: 40px;
}

.consent-box {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.consent-header {
	background: rgba(0,0,0,0.1);
	padding: 25px 30px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.consent-header i {
	font-size: 28px;
	color: #4cd964;
}

.consent-header h3 {
	margin: 0;
	color: white;
}

.consent-content {
	padding: 30px;
}

.consent-content ul {
	margin: 20px 0 20px 20px;
	color: rgba(255,255,255,0.9);
}

.consent-content li {
	margin-bottom: 10px;
	line-height: 1.5;
}

.consent-actions {
	display: flex;
	gap: 15px;
	margin: 30px 0;
	flex-wrap: wrap;
}

.btn-accept {
	background: #4cd964;
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s;
}

.btn-accept:hover {
	background: #44c059;
}

.btn-settings {
	background: rgba(255,255,255,0.2);
	color: white;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 15px 30px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s;
}

.btn-settings:hover {
	background: rgba(255,255,255,0.3);
}

.consent-footer {
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 20px;
	font-size: 14px;
	color: rgba(255,255,255,0.8);
}

.consent-footer i {
	margin-right: 8px;
}

/* Футер политики */
.privacy-footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
	color: #666;
	text-align: center;
}

.contact-link {
	margin-top: 15px;
}

.contact-link a {
	color: #d4a574;
	text-decoration: none;
	font-weight: 500;
}

.contact-link a:hover {
	text-decoration: underline;
}

/* Модальное окно */
.privacy-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.privacy-modal.active {
	display: flex;
}

.modal-content {
	background: white;
	width: 90%;
	max-width: 500px;
	border-radius: 15px;
	overflow: hidden;
	animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
	from {
			opacity: 0;
			transform: translateY(-50px);
	}
	to {
			opacity: 1;
			transform: translateY(0);
	}
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 25px;
	background: #f8f9fa;
	border-bottom: 1px solid #eee;
}

.modal-header h3 {
	margin: 0;
	color: #333;
	display: flex;
	align-items: center;
	gap: 10px;
}

.modal-close {
	background: none;
	border: none;
	font-size: 28px;
	color: #666;
	cursor: pointer;
	line-height: 1;
}

.modal-body {
	padding: 25px;
}

.setting-item {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.setting-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.setting-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.setting-header h4 {
	margin: 0;
	color: #333;
}

.setting-description {
	color: #666;
	font-size: 14px;
	margin: 0;
}

/* Переключатель */
.switch {
	position: relative;
	display: inline-block;
	width: 50px;
	height: 24px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
}

.slider:before {
	position: absolute;
	content: "";
	height: 16px;
	width: 16px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .slider {
	background-color: #4cd964;
}

input:checked + .slider:before {
	transform: translateX(26px);
}

.modal-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.btn-save {
	background: #d4a574;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	justify-content: center;
}

.btn-save:hover {
	background: #c8955c;
}

.btn-cancel {
	background: #f8f9fa;
	color: #666;
	border: 1px solid #ddd;
	padding: 12px 25px;
	border-radius: 5px;
	font-weight: 600;
	cursor: pointer;
	flex: 1;
}

.btn-cancel:hover {
	background: #e9ecef;
}

/* Адаптивность для политики */
@media (max-width: 768px) {
	.privacy-content h2 {
			font-size: 28px;
	}
	
	.privacy-section {
			padding: 20px;
	}
	
	.privacy-details,
	.control-options {
			grid-template-columns: 1fr;
	}
	
	.consent-actions,
	.modal-actions {
			flex-direction: column;
	}
	
	.btn-accept,
	.btn-settings,
	.btn-save,
	.btn-cancel {
			width: 100%;
			justify-content: center;
	}
	
	.info-box {
			flex-direction: column;
			gap: 10px;
	}
}
/* Отзывы */
.reviews-section {
	padding: 80px 0;
	background: #f9f9f9;
}

.reviews-section h2 {
	text-align: center;
	margin-bottom: 40px;
	color: #222;
	font-size: 32px;
}

.reviews-container {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}