
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        
        body {
            background-color: #f5f9f0;
            color: #333;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            background-color: #0C3A2D;
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo h1 {
            font-size: 24px;
            font-weight: 700;
        }
        
        /* Карта */
        .map-section {
            padding: 30px 0;
        }
        
        .map-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .map-header h2 {
            font-size: 2.2rem;
            color: #2e7d32;
            margin-bottom: 15px;
        }
        
        .map-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .map-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        
        .filters-panel {
            width: 280px;
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: fit-content;
        }
        
        .filters-panel h3 {
            font-size: 1.3rem;
            color: #2e7d32;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8f5e9;
        }
        
        .filter-group {
            margin-bottom: 25px;
        }
        
        .filter-group h4 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: #555;
        }
        
        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .filter-option input {
            width: 18px;
            height: 18px;
        }
        
        .filter-option label {
            font-size: 1rem;
            cursor: pointer;
        }

        a{
        text-decoration: none;
        color: white;}
        
        .search-box {
            margin-bottom: 25px;
        }
        
        .search-box input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 30px;
            font-size: 1rem;
        }
        
        .map-view {
            flex: 1;
            height: 600px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        #map {
            width: 100%;
            height: 100%;
        }
        
        /* Легенда карты */
        .map-legend {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }
        
        .map-legend h4 {
            margin-bottom: 10px;
            font-size: 1rem;
            color: #2e7d32;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
        }
        
        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 50%;
        }
        
        /* Стили для маркеров */
        .custom-marker {
            width: 30px;
            height: 30px;
            border-radius: 50% 50% 50% 0;
            transform: rotate(-45deg);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .custom-marker i {
            transform: rotate(45deg);
            color: white;
        }
        
        .plastic { background-color: #FF9800; }
        .glass { background-color: #4CAF50; }
        .paper { background-color: #2196F3; }
        .metal { background-color: #9C27B0; }
        .electronics { background-color: #607D8B; }
        .university { background-color: #d32f2f; } /* Красный цвет для университета */
        
        /* Адаптивность */
        @media (max-width: 900px) {
            .map-container {
                flex-direction: column;
            }
            
            .filters-panel {
                width: 100%;
            }
        }