.store-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .store-card {
            width: 100%;
            max-width: 350px;
            background: #fefefe;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s, box-shadow 0.2s;
        }
		.store-card a {
            text-decoration: none;
			color: #555;
        }
        .store-card:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
			text-decoration: none;
        }
        .store-logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 30px;
            background-color: #f5f5f5;
			
        }
        
        .store-logo {
            display: block;
            max-width: 100px;
            max-height: 25px;
            margin: auto;
            object-fit: contain;
			float: left;
        }
        .store-info {
            padding: 15px;
        }
		
        .store-info h2 {
            margin: 0 0 5px;
            font-size: 1.2em;
            color: #222;
        }
        .store-info .industry {
            font-size: 0.95em;
            color: #666;
            margin-bottom: 10px;
        }
        .store-info p {
            margin: 5px 0;
            font-size: 0.9em;
        }
        .store-info p i {
            color: #555;
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .store-card {
                width: 100%;
            }
        }
    </style>