.industry-filter {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}

.filter-item {
    display: inline-block;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 3px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-item:hover {
    background: #007bff;
    color: #fff;
}

.filter-item.on {
    background: #ff9800;
    color: #fff;
}
