    :root {
            --primary-color: #2a4365;
            --secondary-color: #4299e1;
            --accent-color: #f6ad55;
            --text-color: #2d3748;
            --light-color: #f7fafc;
            --dark-color: #1a202c;
            --success-color: #48bb78;
            --border-radius: 8px;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            text-decoration: none;
            color: var(--secondary-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-color);
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--secondary-color);
            color: white;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
			position: relative;
			overflow: hidden;
        }
		.btn:after {
			content: '';
			position: absolute;
			top: -50%;
			left: -50%;
			width: 200%;
			height: 200%;
			background: rgba(255,255,255,0.1);
			transform: rotate(45deg);
			transition: all 0.3s ease;
			opacity: 0;
		}

		.btn:hover:after {
			opacity: 1;
			left: 100%;
}
        .btn:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .btn-accent {
            background-color: var(--accent-color);
        }

        .btn-accent:hover {
            background-color: #e69c3f;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            display: inline-block;
        }
		
        .text-center {
            text-align: center;
        }

        .text-primary {
            color: var(--primary-color);
        }

        .bg-light {
            background-color: var(--light-color);
        }

        .bg-dark {
            background-color: var(--primary-color);
            color: white;
        }

        .bg-dark h2,
        .bg-dark h3,
        .bg-dark a {
            color: white;
        }

        .bg-dark h2:after {
            background-color: var(--accent-color);
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: var(--box-shadow);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
			margin-left: 10px;
            color: var(--accent-color);
        }

        /* Mobile menu button */
        .menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
			margin-right: 10px;
        }

        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
			margin-right: 10px;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
            color: var(--primary-color);
            position: relative;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        /* Hero section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Features */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-item {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: center;
            transition: var(--transition);
        }

        .feature-item:hover {
            transform: translateY(-10px);

        }
		
		.feature-item h3 {
            color: black;
			opacity: 0.7;
        }
		
		.feature-item p {
            color: black;
			opacity: 0.7;
        }
		
        .feature-item i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
		

        /* Properties */
        .properties {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .property-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .property-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .property-img {
            height: 200px;
            overflow: hidden;
        }

        .property-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .property-card:hover .property-img img {
            transform: scale(1.05);
        }

        .property-info {
            padding: 20px;
        }

        .property-info h3 {
            margin-bottom: 10px;
        }

        .property-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-size: 0.9rem;
        }

        .property-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Services */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-card i {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            position: relative;
        }

        .testimonial-card:before {
            content: '\201C';
            font-size: 4rem;
            color: var(--accent-color);
            opacity: 0.9;
            position: absolute;
            top: 10px;
            left: 10px;
			z-index: 0;
        }

        .testimonial-content {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
		
		.testimonial-content p{
            margin: 10px;
            color: black;
            
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        /* Contact form */
        .contact-form {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
			color: black;
			opacity: 0.8;
        }
		

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            font-family: inherit;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 60px 0 20px;
			
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
			
        }

        .footer-column h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
			color: white;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e0;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .contact-info {
            list-style: none;
        }

        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #cbd5e0;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            padding: 20px 0;
            background-color: #f0f4f8;
        }

        .breadcrumbs ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }

        .breadcrumbs li {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .breadcrumbs li:not(:last-child):after {
            content: '/';
            margin-left: 10px;
            color: #718096;
        }

        .breadcrumbs a {
            color: #718096;
        }

        .breadcrumbs a:hover {
            color: var(--secondary-color);
        }

        /* Districts */
        .districts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .district-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .district-card:hover {
            transform: translateY(-5px);
        }

        .district-info {
            padding: 20px;
        }

        .district-info h3 {
            margin-bottom: 10px;
        }

        .district-info ul {
            list-style-position: inside;
            margin-bottom: 15px;
        }

        .district-info li {
            margin-bottom: 5px;
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .section {
                padding: 60px 0;
            }
			
        }
		@media (max-width: 830px) {
            .menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: white;
                box-shadow: var(--box-shadow);
                transition: var(--transition);
                z-index: 999;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
            }
        }
        @media (max-width: 768px) {
            .menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: white;
                box-shadow: var(--box-shadow);
                transition: var(--transition);
                z-index: 999;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
                padding: 20px;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.5rem;
            }
            
            .section {
                padding: 40px 0;
            }
            
            .contact-form {
                padding: 20px;
            }
        }
		
		/* Добавить в конец файла */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.map-container {
    height: 400px;
    background-color: #eee;
    border-radius: var(--border-radius);
    margin-top: 30px;
	
}
.map-container iframe {
		width: 100%;
		height: 400px;
		border: none; 
		border-radius: 
		var(--border-radius);
	}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 250px;
		
		
    }
	.map-container iframe {
		height: 250px;
		width: 100%;
	}

}

/* Улучшения для доступности */
[aria-hidden="true"] {
    pointer-events: none;
}

.form-control:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeIn 0.5s ease-out;
}

/* Оптимизация для печати */
@media print {
    .hero, .menu-btn, nav, .social-links, .footer-bottom {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        background: none;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.step {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--border-radius);
}
.step span {
    display: block;
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.package {
    padding: 30px;
    background: white;
    border: 1px solid #eee;
    text-align: center;
}
.social-links a[aria-label="WhatsApp"] { background-color: #4C75A3; }
.social-links a[aria-label="Telegram"] { background-color: #4C75A3; }
.social-links a[aria-label="ВКонтакте"] { background-color: #4C75A3; }

.social-links a:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	
}
.social-links i {
	margin: auto;
	
}	

form-control:invalid {
    border-color: #e53e3e;
}

.form-submitting {
    opacity: 0.7;
    pointer-events: none;
}
