			/* Walking Guide Section Styles */
			.walking-guide-container {
				max-width: 1000px;
				margin: 0 auto;
				padding: 0 20px;
			}
			
			/* "See all walks" button */
			.see-all-walks-btn {
				display: inline-flex;
				align-items: center;
				gap: 10px;
				background-color: #ff6600;
				color: white;
				padding: 0.8rem 1.8rem;
				border-radius: 30px;
				font-weight: 600;
				text-decoration: none;
				transition: all 0.3s ease;
				box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
				border: none;
				cursor: pointer;
			}
			
			.see-all-walks-btn:hover {
				background-color: #e55a00;
				transform: translateY(-2px);
				box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
				text-decoration: none;
				color: white;
			}
			
			.see-all-walks-btn.secondary {
				background-color: #2a5298;
				box-shadow: 0 4px 12px rgba(42, 82, 152, 0.2);
			}
			
			.see-all-walks-btn.secondary:hover {
				background-color: #1e3c72;
				box-shadow: 0 6px 15px rgba(42, 82, 152, 0.3);
			}
			
			.see-all-walks-btn i {
				font-size: 1.1rem;
			}
			
			.additional-walks-link {
				text-align: center;
				margin-top: 1.5rem;
				padding-top: 1.5rem;
				border-top: 1px solid #e2e8f0;
			}
			
			/* Route Selection */
			.route-selection {
				background: linear-gradient(135deg, #2a5298, #1e3c72);
				border-radius: 12px;
				padding: 1.5rem 2rem;
				margin-bottom: 2rem;
				box-shadow: 0 8px 25px rgba(42, 82, 152, 0.2);
			}
			
			.route-tabs {
				display: flex;
				gap: 10px;
				margin-bottom: 1.5rem;
				flex-wrap: wrap;
				justify-content: center;
			}
			
			.route-tab {
				background-color: rgba(255, 255, 255, 0.1);
				color: white;
				border: 2px solid rgba(255, 255, 255, 0.2);
				padding: 0.8rem 1.5rem;
				border-radius: 30px;
				font-weight: 600;
				cursor: pointer;
				transition: all 0.3s ease;
			}
			
			.route-tab:hover {
				background-color: rgba(255, 255, 255, 0.2);
				transform: translateY(-2px);
			}
			
			.route-tab.active {
				background-color: #ff6600;
				border-color: #ff6600;
			}
			
			.route-info-card {
				background-color: rgba(255, 255, 255, 0.1);
				border-radius: 8px;
				padding: 1.5rem;
			}
			
			.route-picture-container {
				position: relative;
				width: 100%;
				height: 200px;
				border-radius: 8px;
				overflow: hidden;
				margin-bottom: 1.5rem;
			}
			
			.route-main-image {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform 0.5s ease;
			}
			
			.route-picture-container:hover .route-main-image {
				transform: scale(1.03);
			}
			
			.route-image-caption {
				position: absolute;
				bottom: 0;
				left: 0;
				right: 0;
				background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
				color: white;
				padding: 0.8rem;
				font-size: 0.85rem;
				border-radius: 0 0 8px 8px;
			}
			
			.route-image-caption i {
				margin-right: 5px;
			}
			
			.route-description {
				background-color: rgba(255, 255, 255, 0.15);
				border-radius: 8px;
				padding: 1rem;
				margin-top: 1rem;
			}
			
			.route-description p {
				color: white;
				margin: 0;
				line-height: 1.5;
				font-size: 0.95rem;
			}
			
			.route-description strong {
				color: #ffcc00;
			}
			
			/* Walking Guide Content */
			.walking-guide-content {
				display: grid;
				grid-template-columns: 2fr 1fr;
				gap: 2rem;
			}
			
			@media (max-width: 768px) {
				.walking-guide-content {
					grid-template-columns: 1fr;
				}
			}
			
			/* Current Stop Card */
			.current-stop-card {
				background-color: white;
				border-radius: 12px;
				padding: 2rem;
				box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
			}
			
			.stop-header {
				margin-bottom: 1.5rem;
			}
			
			.stop-counter {
				font-size: 2rem;
				font-weight: 700;
				color: #2a5298;
				margin-bottom: 0.5rem;
				display: flex;
				align-items: baseline;
				gap: 5px;
			}
			
			.stop-divider {
				color: #666;
				font-weight: 400;
			}
			
			.total-stops {
				color: #666;
				font-size: 1.2rem;
				font-weight: 400;
			}
			
			.stop-title {
				color: #2a5298;
				font-size: 1.8rem;
				margin-bottom: 0.5rem;
			}
			
			.stop-subtitle {
				color: #666;
				font-size: 1rem;
			}
			
			.stop-image-container {
				height: 300px;
				border-radius: 8px;
				overflow: hidden;
				margin-bottom: 1.5rem;
				position: relative;
			}
			
			.stop-image {
				width: 100%;
				height: 100%;
				object-fit: cover;
				transition: transform 0.5s ease;
			}
			
			.stop-image-container:hover .stop-image {
				transform: scale(1.03);
			}
			
			.image-caption {
				position: absolute;
				bottom: 0;
				left: 0;
				right: 0;
				background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
				color: white;
				padding: 1rem;
				font-size: 0.9rem;
			}
			
			.image-caption i {
				margin-right: 5px;
			}
			
			.stop-description {
				margin-bottom: 2rem;
			}
			
			.stop-description p {
				color: #555;
				line-height: 1.6;
				margin-bottom: 1.5rem;
			}
			
			.more-info-content {
				background-color: #f8fafc;
				border-radius: 8px;
				padding: 1.5rem;
				margin: 1rem 0;
				border-left: 3px solid #2a5298;
				display: none;
			}
			
			.more-info-content p {
				margin-bottom: 1rem;
				color: #555;
			}
			
			.more-info-content p:last-child {
				margin-bottom: 0;
			}
			
			.more-info-btn {
				display: flex;
				align-items: center;
				gap: 8px;
				background-color: #2a5298;
				color: white;
				border: none;
				padding: 0.7rem 1.2rem;
				border-radius: 5px;
				font-weight: 600;
				cursor: pointer;
				transition: all 0.3s ease;
				margin-bottom: 1.5rem;
			}
			
			.more-info-btn:hover {
				background-color: #1e3c72;
				transform: translateY(-2px);
			}
			
			.more-info-btn.active {
				background-color: #ff6600;
			}
			
			.more-info-btn.active i {
				transform: rotate(180deg);
			}
			
			.more-info-btn i {
				transition: transform 0.3s ease;
				font-size: 0.9rem;
			}
			
			.more-info-btn .less-text {
				display: none;
			}
			
			.more-info-btn.active .more-text {
				display: none;
			}
			
			.more-info-btn.active .less-text {
				display: inline;
			}
			
			/* Navigation Controls */
			.navigation-controls {
				display: flex;
				align-items: center;
				justify-content: space-between;
				gap: 1rem;
				margin-bottom: 0;
				padding: 1.5rem;
				background-color: #f8fafc;
				border-radius: 8px;
			}
			
			.nav-btn {
				display: flex;
				align-items: center;
				gap: 8px;
				padding: 0.8rem 1.5rem;
				background-color: white;
				border: 2px solid #e2e8f0;
				border-radius: 30px;
				color: #2a5298;
				font-weight: 600;
				cursor: pointer;
				transition: all 0.3s ease;
				min-width: 120px;
				justify-content: center;
			}
			
			.nav-btn:hover {
				background-color: #f0f4f8;
				transform: translateY(-2px);
			}
			
			.nav-btn:disabled {
				opacity: 0.5;
				cursor: not-allowed;
				transform: none;
			}
			
			.nav-btn:disabled:hover {
				background-color: white;
				transform: none;
			}
			
			.progress-indicator {
				flex: 1;
				text-align: center;
				max-width: 300px;
			}
			
			.progress-text {
				font-size: 0.9rem;
				color: #666;
				font-weight: 500;
				margin-bottom: 0.5rem;
			}
			
			.progress-bar {
				height: 6px;
				background-color: #e2e8f0;
				border-radius: 3px;
				overflow: hidden;
			}
			
			.progress-fill {
				height: 100%;
				background: linear-gradient(to right, #2a5298, #ff6600);
				border-radius: 3px;
				transition: width 0.5s ease;
			}
			
			/* Stops List - Убрано краткое описание */
			.stops-list {
				background-color: white;
				border-radius: 12px;
				padding: 1.5rem;
				box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
				height: fit-content;
			}
			
			.stops-list-title {
				color: #2a5298;
				margin-bottom: 1.5rem;
				font-size: 1.3rem;
				text-align: center;
			}
			
			.stops-container {
				display: flex;
				flex-direction: column;
				gap: 10px;
			}
			
			.stop-item {
				display: flex;
				align-items: center;
				gap: 12px;
				padding: 1rem;
				background-color: #f8fafc;
				border-radius: 8px;
				cursor: pointer;
				transition: all 0.3s ease;
				border: 2px solid transparent;
			}
			
			.stop-item:hover {
				background-color: #f0f4f8;
				transform: translateX(5px);
			}
			
			.stop-item.active {
				background-color: #e8f0fe;
				border-color: #2a5298;
			}
			
			.stop-item-number {
				background-color: #2a5298;
				color: white;
				width: 36px;
				height: 36px;
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				font-weight: 700;
				font-size: 0.9rem;
				flex-shrink: 0;
			}
			
			.stop-item.active .stop-item-number {
				background-color: #ff6600;
			}
			
			.stop-item-content {
				flex: 1;
			}
			
			.stop-item-content h4 {
				color: #2a5298;
				font-size: 1rem;
				margin-bottom: 4px;
			}
			
			.stop-item.active .stop-item-content h4 {
				color: #ff6600;
			}
			
			/* Убрано краткое описание */
			.stop-item-content p {
				display: none;
			}
			
			.stop-item i {
				color: #2a5298;
				font-size: 0.9rem;
				opacity: 0.7;
			}
			
			/* Responsive Design */
			@media (max-width: 768px) {
				.navigation-controls {
					flex-direction: column;
					gap: 1rem;
				}
				
				.nav-btn {
					width: 100%;
				}
				
				.progress-indicator {
					width: 100%;
					max-width: none;
				}
				
				.route-tabs {
					flex-direction: column;
					align-items: stretch;
				}
				
				.route-tab {
					text-align: center;
				}
			}
			
			@media (max-width: 480px) {
				.stop-image-container {
					height: 220px;
				}
				
				.route-picture-container {
					height: 180px;
				}
			}