   #city_modal .modal-xl {
        max-width: 95%;
        width: 1400px;
    }

    #city_modal .modal-content {
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    #city_modal .modal-header {
        background-color: var(--primary-color);
        color: white;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        padding: 20px;
    }

    #city_modal .modal-title {
        font-size: 24px;
        font-weight: bold;
    }

    #city_modal .modal-body {
        max-height: 80vh;
        overflow-y: auto;
        padding: 20px;
    }

    #city_modal .col-lg-2 {
        flex: 0 0 20%;
        max-width: 20%;
        padding: 0 10px;
    }

    #city_modal .obl {
        font-size: 18px;
        font-weight: bold;
        color: var(--secondary-color);
        margin-bottom: 15px;
        border-bottom: 2px solid var(--secondary-color);
        padding-bottom: 5px;
    }

    #city_modal .cities-list {
        padding-left: 0;
        list-style-type: none;
        margin-bottom: 20px;
    }

    #city_modal .cid {
        margin-bottom: 8px;
    }

    #city_modal .lnk {
        color: var(--dark-color);
        text-decoration: none;
        font-size: 14px;
        line-height: 1.3;
        transition: color 0.3s ease;
        display: block;
        padding: 3px 0;
    }

    #city_modal .lnk:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }

    #city_modal .link-weight {
        font-weight: bold;
    }

    #city_modal .btn-close {
        color: white;
        opacity: 1;
    }

    #city_modal .btn-close:hover {
        color: var(--light-color);
    }

    /* Responsive styles */
    @media (max-width: 1200px) {
        #city_modal .col-lg-2 {
            flex: 0 0 25%;
            max-width: 25%;
        }
    }

    @media (max-width: 992px) {
        #city_modal .col-lg-2 {
            flex: 0 0 33.333%;
            max-width: 33.333%;
        }
        #city_modal .obl {
            font-size: 16px;
        }
        #city_modal .lnk {
            font-size: 13px;
        }
    }

    @media (max-width: 768px) {
        #city_modal .col-lg-2 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 576px) {
        #city_modal .col-lg-2 {
            flex: 0 0 100%;
            max-width: 100%;
        }
        #city_modal .modal-xl {
            width: 95%;
            margin: 10px auto;
        }
    }

    /* Scrollbar styles */
    #city_modal .modal-body::-webkit-scrollbar {
        width: 8px;
    }

    #city_modal .modal-body::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    #city_modal .modal-body::-webkit-scrollbar-thumb {
        background: var(--secondary-color);
        border-radius: 4px;
    }

    #city_modal .modal-body::-webkit-scrollbar-thumb:hover {
        background: var(--primary-color);
    }
	
	
 .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
	
	.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
	border-radius: 10px; }
	
	
	
	.btn-outline-primary {
    color: #000000;
    border-color: #000000;
	border-radius: 10px;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #ff2525;
    border-color: #ff2525; }

    .btn-warning, .btn-danger .btn-success{
        padding: 8px 16px;
        font-size: 14px;
    }
    .btn-warning {
        background-color: #ffc107;
        border-color: #ffc107;
        color: #000;
		border-radius: 10px;
    } 
    .btn-warning:hover {
        background-color: #ffca2c;
        border-color: #ffc720;
        color: #000;
		border-radius: 10px;
    }
    .btn-danger {
        background-color: #FF2525;
        border-color: #FF2525;
		border-radius: 10px;
    }
    .btn-danger:hover {
        background-color: #FF8218;
        border-color: #FF8218;
		border-radius: 10px;
    }
    @media (max-width: 991.98px) {
        .navbar-nav {
            margin-bottom: 10px;
        }
        .d-flex {
            flex-direction: column;
            width: 100%;
        }
        .btn-warning, .btn-danger .btn-success{
            width: 100%;
            margin-bottom: 10px;
        }
    }       

	   :root {
            --primary-color: #007bff;
            --secondary-color: #7C3A7F;
            --accent-color: #FF2525;
            --hover-color: #FF8218;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark-color);
        }
        .navbar {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 100px 0 150px;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
            position: relative;
        }
		.hero-sectionb2b {
            background: linear-gradient(135deg, #474e70 0%, #764ba2 100%);
            color: white;
            padding: 100px 0 150px;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
            position: relative;
        }
		
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: white;
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
        }
		.hero-sectionb2b::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: white;
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
        }
		
		
        .btn-accent {
            background-color: var(--accent-color);
            border: none;
            color: white;
            padding: 12px 30px;
            font-size: 18px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
			 border-radius: 15px;
        }
        .btn-accent:hover {
            background-color: var(--hover-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
			 border-radius: 15px;
        }
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .bg-secondary {
            background-color: var(--secondary-color) !important;
        }
        .text-secondary {
            color: var(--secondary-color) !important;
        }  
        .promo-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #ffc107;
            color: #000;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
        }
        .carousel-item img {
            border-radius: 35px;
        }
        .blog-card img {
            height: 200px;
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
		
		.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
	
	 .banner-container {
        width: 100%;
        background-color: #f8f9fa; /* Добавьте фоновый цвет, если нужно */
        padding: 20px 0; /* Добавьте отступы сверху и снизу */
    }
    .banner-image {
        width: 100%;
        border-radius: 15px;
        object-fit: cover; /* Это обеспечит заполнение изображением всего контейнера */
    } 
	
	 #support .card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    #support .option {
        text-align: left;
        padding: 10px 15px;
    }
    #support .answers {
        background-color: #f8f9fa;
        border-radius: 10px;
        padding: 15px;
    }
    #support .answer-button {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    #support .instruction-text {
        margin-bottom: 15px;
    }
    #support .problem-solved {
        background-color: #28a745;
        color: white;
    }
    #support .not-helped {
        background-color: #dc3545;
        color: white;
    }
    #support .instruction-image {
        max-width: 100%;
        border-radius: 10px;
        margin-bottom: 15px;
    }
	
	 #faq .accordion-button {
        background-color: #f8f9fa;
        color: #333;
        font-weight: 600;
    }
    #faq .accordion-button:not(.collapsed) {
        background-color: var(--primary-color);
        color: white;
    }
    #faq .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0,0,0,.125);
    }
    #faq .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    #faq .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
	
	#modald-122 .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

#modald-122 .modal-header {
    background-color: var(--primary-color);
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#modald-122 .modal-title {
    font-size: 20px;
}

#modald-122 .btn-accent {
    background-color: var(--accent-color);
    border: none;
    color: white;
    transition: all 0.3s;
}

#modald-122 .btn-accent:hover {
    background-color: var(--hover-color);
}

#modald-122 .form-control {
    border-radius: 5px;
}